pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.8.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>assira.lambda</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: lamba support</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. <compilerArgs>
  27. <argument>-Xlint:unchecked</argument>
  28. <argument>-Xlint:removal</argument>
  29. <argument>-parameters</argument>
  30. <argument>--add-exports</argument>
  31. <argument>java.base/jdk.internal.reflect=ALL-UNNAMED</argument>
  32. </compilerArgs>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-surefire-plugin</artifactId>
  38. <configuration>
  39. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest</excludedGroups>
  40. <argLine>--add-exports java.base/jdk.internal.reflect=ALL-UNNAMED</argLine>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.jacoco</groupId>
  45. <artifactId>jacoco-maven-plugin</artifactId>
  46. <configuration>
  47. <excludes>
  48. <exclude>net/ranides/assira/test/**</exclude>
  49. </excludes>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <dependencies>
  55. <dependency>
  56. <groupId>net.ranides</groupId>
  57. <artifactId>assira.core</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>net.ranides</groupId>
  61. <artifactId>assira.core11</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>net.ranides</groupId>
  65. <artifactId>assira.junit</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.slf4j</groupId>
  74. <artifactId>slf4j-api</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>