pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>Odds</groupId>
  8. <artifactId>Odds</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../Odds/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>OddsStrategyWeb</artifactId>
  13. <packaging>war</packaging>
  14. <properties>
  15. <maven.compiler.source>21</maven.compiler.source>
  16. <maven.compiler.target>21</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-war-plugin</artifactId>
  24. <version>3.4.0</version>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.wicket</groupId>
  31. <artifactId>wicket-core</artifactId>
  32. <version>10.0.0</version>
  33. </dependency>
  34. </dependencies>
  35. <repositories>
  36. <repository>
  37. <id>nordhs-repo</id>
  38. <name>Nords Repo</name>
  39. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  40. </repository>
  41. </repositories>
  42. </project>