|
@@ -0,0 +1,142 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>com.rongwei</groupId>
|
|
|
+ <artifactId>InControl</artifactId>
|
|
|
+ <version>1.1-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+ <groupId>com.rongwei</groupId>
|
|
|
+ <artifactId>cx-file</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <licenses>
|
|
|
+ <license>
|
|
|
+ <name>Apache License, Version 2.0</name>
|
|
|
+ <url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
|
+ </license>
|
|
|
+ </licenses>
|
|
|
+ <modules>
|
|
|
+ <module>cx-file-server</module>
|
|
|
+ <module>cx-file-common</module>
|
|
|
+ <module>cx-file-entity</module>
|
|
|
+ </modules>
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>ossrh</id>
|
|
|
+ <name>Maven Central Staging Repository</name>
|
|
|
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>ossrh</id>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
+ <properties>
|
|
|
+ <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>
|
|
|
+ </properties>
|
|
|
+ <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>
|
|
|
+ <dependencies>
|
|
|
+ <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>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aspose.words</groupId>
|
|
|
+ <artifactId>aspose-words</artifactId>
|
|
|
+ <version>21.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.rongwei</groupId>
|
|
|
+ <artifactId>bs-common</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>oss</id>
|
|
|
+ <name>oss</name>
|
|
|
+ <url>https://oss.sonatype.org/content/groups/public</url>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ <id>spring-milestones</id>
|
|
|
+ <name>Spring Milestones</name>
|
|
|
+ <url>https://repo.spring.io/libs-milestone</url>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <id>sonatype-nexus-snapshots</id>
|
|
|
+ <name>Sonatype Nexus Snapshots</name>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>versions-maven-plugin</artifactId>
|
|
|
+ <version>2.7</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <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>
|
|
|
+ <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>
|
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
|
+ <version>2.8.2</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|