|
@@ -3,10 +3,10 @@
|
|
|
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.jiashun.gao</groupId>
|
|
|
- <artifactId>power-system</artifactId>
|
|
|
+ <artifactId>file-collect</artifactId>
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
- <name>power-system</name>
|
|
|
- <description>power-system project</description>
|
|
|
+ <name>file-collect</name>
|
|
|
+ <description>file-collect project</description>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
@@ -15,6 +15,7 @@
|
|
|
<skipTests>true</skipTests>
|
|
|
<docker.host>http://192.168.3.101:2375</docker.host>
|
|
|
<docker.maven.plugin.version>1.2.2</docker.maven.plugin.version>
|
|
|
+ <docker.image.prefix>kekaida</docker.image.prefix>
|
|
|
<druid.version>1.1.10</druid.version>
|
|
|
<hutool.version>4.5.7</hutool.version>
|
|
|
<swagger2.version>2.9.2</swagger2.version>
|
|
@@ -170,38 +171,124 @@
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <manifest>
|
|
|
+ <addClasspath>true</addClasspath>
|
|
|
+ <classpathPrefix>lib/</classpathPrefix>
|
|
|
+ <useUniqueVersions>false</useUniqueVersions>
|
|
|
+ </manifest>
|
|
|
+ </archive>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>copy-dependencies</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+
|
|
|
+ 各子模块按照实际层级定义各模块对应的属性值,检查所有微服务模块依赖jar文件合并复制到同一个目录
|
|
|
+ 详见各子模块中 boot-jar-output 属性定义
|
|
|
+ -->
|
|
|
+ <outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
+ <excludeTransitive>false</excludeTransitive>
|
|
|
+ <stripVersion>false</stripVersion>
|
|
|
+ <silent>false</silent>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <includes>
|
|
|
+
|
|
|
+ <include>
|
|
|
+ <groupId>null</groupId>
|
|
|
+ <artifactId>null</artifactId>
|
|
|
+ </include>
|
|
|
+ </includes>
|
|
|
+ <layout>ZIP</layout>
|
|
|
+
|
|
|
+ 基于maven-jar-plugin输出微服务jar文件进行二次spring boot重新打包文件的输出目录
|
|
|
+ 所有微服务构建输出jar文件统一输出到与lib同一个目录,便于共同引用同一个lib目录
|
|
|
+ 详见各子模块中boot-jar-output属性定义
|
|
|
+ -->
|
|
|
+
|
|
|
+ <outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
+ <version>1.4.13</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>default</id>
|
|
|
+ <goals>
|
|
|
+ <goal>build</goal>
|
|
|
+ <goal>push</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <repository>${docker.image.prefix}/${project.artifactId}</repository>
|
|
|
+ <tag>${project.version}</tag>
|
|
|
+ <buildArgs>
|
|
|
+ <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
|
|
|
+ </buildArgs>
|
|
|
+ </configuration>
|
|
|
</plugin>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|