|
|
@ -5,7 +5,7 @@
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
<artifactId>${root.id}</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
|
|
|
|
|
|
|
|
<name>ruoyi</name>
|
|
|
|
<name>ruoyi</name>
|
|
|
@ -13,6 +13,7 @@
|
|
|
|
<description>若依微服务系统</description>
|
|
|
|
<description>若依微服务系统</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
<root.id>ruoyi</root.id>
|
|
|
|
<ruoyi.version>3.2.0</ruoyi.version>
|
|
|
|
<ruoyi.version>3.2.0</ruoyi.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
@ -40,6 +41,10 @@
|
|
|
|
<common-pool.version>2.10.0</common-pool.version>
|
|
|
|
<common-pool.version>2.10.0</common-pool.version>
|
|
|
|
<commons-collections.version>3.2.2</commons-collections.version>
|
|
|
|
<commons-collections.version>3.2.2</commons-collections.version>
|
|
|
|
<transmittable-thread-local.version>2.12.2</transmittable-thread-local.version>
|
|
|
|
<transmittable-thread-local.version>2.12.2</transmittable-thread-local.version>
|
|
|
|
|
|
|
|
<publish.root>${rootlocation}/docker-test/ruoyi</publish.root>
|
|
|
|
|
|
|
|
<!-- 将配置文件打包到指定目录 -->
|
|
|
|
|
|
|
|
<publish.dir>${publish.root}</publish.dir>
|
|
|
|
|
|
|
|
<jardir>${project.artifactId}</jardir>
|
|
|
|
</properties>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 依赖声明 -->
|
|
|
|
<!-- 依赖声明 -->
|
|
|
@ -162,9 +167,9 @@
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Collection 增强Java集合框架 -->
|
|
|
|
<!-- Collection 增强Java集合框架 -->
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>${commons-collections.version}</version>
|
|
|
|
<version>${commons-collections.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
@ -273,7 +278,13 @@
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<!-- <resources>-->
|
|
|
|
|
|
|
|
<!-- <resource>-->
|
|
|
|
|
|
|
|
<!-- <targetPath></targetPath>-->
|
|
|
|
|
|
|
|
<!-- </resource>-->
|
|
|
|
|
|
|
|
<!-- </resources>-->
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
@ -284,6 +295,46 @@
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
|
|
|
<version>3.2.0</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
|
|
<id>register-root-location-var</id>
|
|
|
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
|
|
<goal>rootlocation</goal>
|
|
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
|
|
<!--拷贝私有配置-->
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
|
|
<id>copy-private-config</id>
|
|
|
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
|
|
<outputDirectory>${publish.dir}/${jardir}</outputDirectory>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
|
|
<directory>${project.build.directory}</directory>
|
|
|
|
|
|
|
|
<targetPath>${project.build.directory}/*.jar</targetPath>
|
|
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|