pom.xml 957 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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. <parent>
  5. <groupId>xyz.tbvns</groupId>
  6. <artifactId>PowerGD</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>GD4J</artifactId>
  10. <version>1.0-ALPHA</version>
  11. <distributionManagement>
  12. <repository>
  13. <id>main-repo</id> <!-- Must match the id in settings.xml -->
  14. <url>http://192.168.1.42:7071/releases</url>
  15. </repository>
  16. </distributionManagement>
  17. <properties>
  18. <maven.compiler.source>21</maven.compiler.source>
  19. <maven.compiler.target>21</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. </project>