pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <dependency>
  35. <groupId>javax.servlet</groupId>
  36. <artifactId>javax.servlet-api</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40. <repositories>
  41. <repository>
  42. <id>nordhs-repo</id>
  43. <name>Nords Repo</name>
  44. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  45. </repository>
  46. </repositories>
  47. </project>