|
@@ -0,0 +1,165 @@
|
|
|
+<?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.rongwei</groupId>
|
|
|
+ <artifactId>qcs-business</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <modules>
|
|
|
+ <module>qcs-server</module>
|
|
|
+ <module>qcs-common</module>
|
|
|
+ <module>qcs-entity</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <!--<parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.1.2.RELEASE</version>
|
|
|
+ </parent>-->
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <artifactId>InControl</artifactId>
|
|
|
+ <groupId>com.rongwei</groupId>
|
|
|
+ <version>1.1-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <!--<docker.image.prefix>ag</docker.image.prefix>-->
|
|
|
+ <!--<docker.plugin.version>0.4.13</docker.plugin.version>-->
|
|
|
+ <mapper.version>3.4.0</mapper.version>
|
|
|
+ <maven.compile.source>1.8</maven.compile.source>
|
|
|
+ <maven.compile.target>1.8</maven.compile.target>
|
|
|
+ <fastjson.version>1.2.31</fastjson.version>
|
|
|
+ <!--<boot.admin.client>2.1.2</boot.admin.client>-->
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.16.14</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>oss</id>
|
|
|
+ <name>oss</name>
|
|
|
+ <url>https://oss.sonatype.org/content/groups/public</url>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <id>spring-milestones</id>
|
|
|
+ <name>Spring Milestones</name>
|
|
|
+ <url>https://repo.spring.io/libs-milestone</url>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <id>sonatype-nexus-snapshots</id>
|
|
|
+ <name>Sonatype Nexus Snapshots</name>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <!--依赖管理,用于管理spring-cloud的依赖,其中Camden.SR3是版本号-->
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>Greenwich.RELEASE</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.33</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
+ <version>0.2.1.RELEASE</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <distributionManagement>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>ossrh</id>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ <repository>
|
|
|
+ <id>ossrh</id>
|
|
|
+ <name>Maven Central Staging Repository</name>
|
|
|
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
+ </repository>
|
|
|
+ </distributionManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>versions-maven-plugin</artifactId>
|
|
|
+ <version>2.7</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${maven.compile.source}</source>
|
|
|
+ <target>${maven.compile.target}</target>
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
+ <version>2.4</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>attach-sources</id>
|
|
|
+ <goals>
|
|
|
+ <goal>jar-no-fork</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
|
+ <version>2.8.2</version>
|
|
|
+ </plugin>
|
|
|
+ <!--<plugin>-->
|
|
|
+ <!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
+ <!--<artifactId>maven-javadoc-plugin</artifactId>-->
|
|
|
+ <!--<version>2.10.3</version>-->
|
|
|
+ <!--<executions>-->
|
|
|
+ <!--<execution>-->
|
|
|
+ <!--<id>attach-javadocs</id>-->
|
|
|
+ <!--<goals>-->
|
|
|
+ <!--<goal>jar</goal>-->
|
|
|
+ <!--</goals>-->
|
|
|
+ <!--</execution>-->
|
|
|
+ <!--</executions>-->
|
|
|
+ <!--</plugin>-->
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|