pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <parent>
  6. <artifactId>assira.project</artifactId>
  7. <groupId>net.ranides</groupId>
  8. <version>2.3.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>assira.jdk11</artifactId>
  12. <properties>
  13. <assira.junit.debug>false</assira.junit.debug>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <configuration>
  23. <source>${maven.compiler.source}</source>
  24. <target>${maven.compiler.target}</target>
  25. <compilerArgs>
  26. <argument>-Xlint:unchecked</argument>
  27. <argument>-Xlint:removal</argument>
  28. <argument>-parameters</argument>
  29. </compilerArgs>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <groupId>org.jacoco</groupId>
  34. <artifactId>jacoco-maven-plugin</artifactId>
  35. <configuration>
  36. <excludes>
  37. <exclude>net/ranides/assira/test/**</exclude>
  38. </excludes>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.ranides</groupId>
  50. <artifactId>assira</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.ranides</groupId>
  54. <artifactId>assira.junit</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.slf4j</groupId>
  58. <artifactId>slf4j-api</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>