pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <groupId>xyz.kwiecien.experiments</groupId>
  7. <artifactId>jfuck</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>24</maven.compiler.source>
  11. <maven.compiler.target>24</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.junit.jupiter</groupId>
  17. <artifactId>junit-jupiter-api</artifactId>
  18. <version>5.11.3</version>
  19. <scope>test</scope>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <version>3.13.0</version>
  28. <configuration>
  29. <source>${maven.compiler.source}</source>
  30. <target>${maven.compiler.target}</target>
  31. <compilerArgs>
  32. <arg>--enable-preview</arg>
  33. </compilerArgs>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>