123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>three-framework</artifactId>
- <groupId>com.three</groupId>
- <version>2.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>alg-platform</artifactId>
- <packaging>jar</packaging>
- <version>2.0</version>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>com.three</groupId>-->
- <!-- <artifactId>three-client</artifactId>-->
- <!-- <version>2.0-SNAPSHOT</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-data-api</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-data-api-dm</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-datasource</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-redis</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.three</groupId>-->
- <!-- <artifactId>three-auth</artifactId>-->
- <!-- <version>2.0</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-security</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.three</groupId>
- <artifactId>three-quartz</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.three</groupId>-->
- <!--<artifactId>three-message</artifactId>-->
- <!--<version>1.0</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.ecnu.pojo</groupId>
- <artifactId>ecnu-alg-pojo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>three-dev-from</id>
- <repositories>
- <repository>
- <id>maven-three</id>
- <url>https://lekoxnfx.com:4001/repository/maven-three-dev/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- </profile>
- </profiles>
- </project>
|