pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.platomix</groupId>
  7. <artifactId>platomix-pom</artifactId>
  8. <version>1.1.5</version>
  9. <relativePath />
  10. </parent>
  11. <artifactId>platomix-gmetry-mcp</artifactId>
  12. <version>4.0.0</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.platomix</groupId>
  16. <artifactId>platomix-gmetry-framework</artifactId>
  17. <version>2.2.4</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.whvcse</groupId>
  21. <artifactId>easy-captcha</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <finalName>platomix-gmetry-mcp</finalName>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. </plugin>
  31. <!--
  32. <plugin>
  33. <groupId>io.fabric8</groupId>
  34. <artifactId>docker-maven-plugin</artifactId>
  35. <executions>
  36. <execution>
  37. <id>build-push</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>build</goal>
  41. <goal>push</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. -->
  47. </plugins>
  48. </build>
  49. <repositories>
  50. <repository>
  51. <id>alimaven</id>
  52. <name>aliyun maven</name>
  53. <url>https://maven.aliyun.com/repository/public/</url>
  54. <snapshots>
  55. <enabled>false</enabled>
  56. </snapshots>
  57. </repository>
  58. <repository>
  59. <id>platomix-release</id>
  60. <name>NexusReleases</name>
  61. <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
  62. </repository>
  63. </repositories>
  64. </project>