pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <resources>
  21. <resource>
  22. <filtering>false</filtering>
  23. <directory>src/main/resources</directory>
  24. </resource>
  25. <resource>
  26. <filtering>false</filtering>
  27. <directory>src/main/java</directory>
  28. <includes>
  29. <include>**</include>
  30. </includes>
  31. <excludes>
  32. <exclude>**/*.java</exclude>
  33. </excludes>
  34. </resource>
  35. </resources>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-war-plugin</artifactId>
  40. <version>3.4.0</version>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.apache.wicket</groupId>
  47. <artifactId>wicket-core</artifactId>
  48. <version>10.2.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>javax.servlet-api</artifactId>
  53. <version>4.0.1</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. </dependencies>
  57. <repositories>
  58. <repository>
  59. <id>nordhs-repo</id>
  60. <name>Nords Repo</name>
  61. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  62. </repository>
  63. </repositories>
  64. </project>