pom.xml 950 B

123456789101112131415161718192021222324252627
  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. <groupId>xyz.tbvns</groupId>
  8. <artifactId>PowerGD</artifactId>
  9. <version>1.0-ALPHA</version>
  10. </parent>
  11. <artifactId>GD4J</artifactId>
  12. <distributionManagement>
  13. <repository>
  14. <id>main-repo</id> <!-- Must match the id in settings.xml -->
  15. <url>http://192.168.1.42:7071/releases</url>
  16. </repository>
  17. </distributionManagement>
  18. <properties>
  19. <maven.compiler.source>21</maven.compiler.source>
  20. <maven.compiler.target>21</maven.compiler.target>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. </properties>
  23. </project>