123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-system</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>platomix-gmetry-system-api</artifactId>
- <version>4.0.18</version>
- <dependencies>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-system-client</artifactId>
- <version>1.1.7</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-message</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-framework</artifactId>
- <version>2.2.9</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-auth</artifactId>
- <version>1.0.30</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-bi-client</artifactId>
- <version>1.0.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.whvcse</groupId>
- <artifactId>easy-captcha</artifactId>
- </dependency>
- <!-- 引入fastjson1.x只为ip地址库解析。业务使用fastjson2 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.83</version>
- </dependency>
- <dependency>
- <groupId>com.kingbase8</groupId>
- <artifactId>kingbase8</artifactId>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>4.2.2</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>platomix-gmetry-system</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <!-- <plugin>-->
- <!-- <groupId>io.fabric8</groupId>-->
- <!-- <artifactId>docker-maven-plugin</artifactId>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <id>build-push</id>-->
- <!-- <phase>package</phase>-->
- <!-- <goals>-->
- <!-- <goal>build</goal>-->
- <!-- <goal>push</goal>-->
- <!-- </goals>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>fayuan</id>
- <properties>
- <profile.env>docker-fayuan</profile.env>
- </properties>
- </profile>
- <profile>
- <id>kingbase</id>
- <properties>
- <profile.env>docker-kingbase</profile.env>
- </properties>
- </profile>
- </profiles>
- </project>
|