pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  5. <artifactId>three-framework</artifactId>
  6. <groupId>com.three</groupId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>alg-platform</artifactId>
  11. <packaging>jar</packaging>
  12. <version>2.0</version>
  13. <dependencies>
  14. <!-- <dependency>-->
  15. <!-- <groupId>com.three</groupId>-->
  16. <!-- <artifactId>three-client</artifactId>-->
  17. <!-- <version>2.0-SNAPSHOT</version>-->
  18. <!-- </dependency>-->
  19. <dependency>
  20. <groupId>com.three</groupId>
  21. <artifactId>three-data-api</artifactId>
  22. <version>2.0-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.three</groupId>
  26. <artifactId>three-data-api-dm</artifactId>
  27. <version>2.0-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.three</groupId>
  31. <artifactId>three-datasource</artifactId>
  32. <version>2.0-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.three</groupId>
  36. <artifactId>three-redis</artifactId>
  37. <version>2.0-SNAPSHOT</version>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.three</groupId>-->
  41. <!-- <artifactId>three-auth</artifactId>-->
  42. <!-- <version>2.0</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.three</groupId>
  46. <artifactId>three-security</artifactId>
  47. <version>2.0-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.three</groupId>
  51. <artifactId>three-quartz</artifactId>
  52. <version>2.0-SNAPSHOT</version>
  53. </dependency>
  54. <!--<dependency>-->
  55. <!--<groupId>com.three</groupId>-->
  56. <!--<artifactId>three-message</artifactId>-->
  57. <!--<version>1.0</version>-->
  58. <!--</dependency>-->
  59. <dependency>
  60. <groupId>com.ecnu.pojo</groupId>
  61. <artifactId>ecnu-alg-pojo</artifactId>
  62. <version>1.0-SNAPSHOT</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. <profiles>
  74. <profile>
  75. <id>three-dev-from</id>
  76. <repositories>
  77. <repository>
  78. <id>maven-three</id>
  79. <url>https://lekoxnfx.com:4001/repository/maven-three-dev/</url>
  80. <snapshots>
  81. <enabled>true</enabled>
  82. </snapshots>
  83. </repository>
  84. </repositories>
  85. </profile>
  86. </profiles>
  87. </project>