pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.lynarstudios</groupId>
  5. <artifactId>ls-standard-library-jni</artifactId>
  6. <version>2023.2.0</version>
  7. <packaging>jar</packaging>
  8. <name>ls-standard-library-jni</name>
  9. <url>https://lynarstudios.com</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <java.version>11</java.version>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-surefire-plugin</artifactId>
  21. <version>3.0.0-M7</version>
  22. <configuration>
  23. <includes>
  24. <include>**/*Test.java</include>
  25. </includes>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.junit.jupiter</groupId>
  33. <artifactId>junit-jupiter-engine</artifactId>
  34. <version>5.9.2</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. </project>