<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-plaform-settings-center</artifactId>
|
<packaging>pom</packaging>
|
<description>平台设置服务</description>
|
<modules>
|
<module>kidgrow-plaform-settings-center-api</module>
|
<module>kidgrow-plaform-settings-center-server</module>
|
</modules>
|
<version>1.0</version>
|
|
<parent>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-commons-center</artifactId>
|
<version>1.0</version>
|
<relativePath/>
|
</parent>
|
|
<dependencies>
|
<!-- <!–喜高基础服务–>-->
|
<!-- <dependency>-->
|
<!-- <groupId>com.kidgrow</groupId>-->
|
<!-- <artifactId>kidgrow-config-center</artifactId>-->
|
<!-- </dependency>-->
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-common-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-db-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-log-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-swagger2-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-redis-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-ribbon-spring-boot-starter</artifactId>
|
</dependency>
|
<!-- mybatis-plus start -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus-boot-starter.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-extension</artifactId>
|
<version>${mybatis-plus-boot-starter.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus</artifactId>
|
<version>${mybatis-plus-boot-starter.version}</version>
|
</dependency>
|
</dependencies>
|
|
<repositories>
|
<repository>
|
<id>nexus-releases</id>
|
<name>team repository</name>
|
<url>http://101.132.172.96:8091/repository/kidgrow3.0-maven-releases/</url>
|
<releases>
|
<enabled>true</enabled>
|
</releases>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</repository>
|
<repository>
|
<id>alimaven</id>
|
<name>aliyun maven</name>
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
<releases>
|
<enabled>true</enabled>
|
</releases>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</repository>
|
<repository>
|
<id>jitpack.io</id>
|
<url>https://jitpack.io</url>
|
</repository>
|
</repositories>
|
|
<build>
|
<pluginManagement>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<!--跳过项目运行测试用例-->
|
<skipTests>true</skipTests>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring-boot-maven-plugin.version}</version>
|
</plugin>
|
<plugin>
|
<groupId>com.spotify</groupId>
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
<version>${docker-maven-plugin.version}</version>
|
</plugin>
|
</plugins>
|
</pluginManagement>
|
</build>
|
|
<distributionManagement>
|
<repository>
|
<id>nexus-releases</id>
|
<url>
|
http://101.132.172.96:8091/repository/kidgrow3.0-maven-releases/
|
</url>
|
</repository>
|
<snapshotRepository>
|
<id>nexus-snapshots</id>
|
<url>
|
http://101.132.172.96:8091/repository/maven-snapshots/
|
</url>
|
</snapshotRepository>
|
</distributionManagement>
|
</project>
|