pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>assira.project</artifactId>
  8. <groupId>net.ranides</groupId>
  9. <version>2.7.3-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>assira.core11</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: runtime for JDK 11</description>
  15. <properties>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <maven.compiler.source>11</maven.compiler.source>
  18. <maven.compiler.target>11</maven.compiler.target>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <configuration>
  26. <source>${maven.compiler.source}</source>
  27. <target>${maven.compiler.target}</target>
  28. <compilerArgs>
  29. <argument>-Xlint:unchecked</argument>
  30. <argument>-Xlint:removal</argument>
  31. <argument>-parameters</argument>
  32. </compilerArgs>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.jacoco</groupId>
  37. <artifactId>jacoco-maven-plugin</artifactId>
  38. <configuration>
  39. <excludes>
  40. <exclude>net/ranides/assira/test/**</exclude>
  41. </excludes>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <dependencies>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>net.ranides</groupId>
  53. <artifactId>assira.core</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>net.ranides</groupId>
  57. <artifactId>assira.junit</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>slf4j-api</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. </dependency>
  67. </dependencies>
  68. </project>