|
@@ -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>
|
|
|
+ <!-- 基于maven-jar-plugin插件实现把依赖jar定义写入输出jar的META-INFO/MANIFEST文件 -->
|
|
|
+ <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>
|
|
|
+ <!-- 拷贝项目所有依赖jar文件到构建lib目录下 -->
|
|
|
+ <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>
|
|
|
+ <!-- Spring Boot模块jar构建 -->
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <includes>
|
|
|
+ <!-- 不存在的include引用,相当于排除所有maven依赖jar,没有任何三方jar文件打入输出jar -->
|
|
|
+ <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>
|
|
|
-<!-- <plugin>-->
|
|
|
-<!-- <groupId>com.spotify</groupId>-->
|
|
|
-<!-- <artifactId>docker-maven-plugin</artifactId>-->
|
|
|
-<!-- <version>${docker.maven.plugin.version}</version>-->
|
|
|
-<!-- <executions>-->
|
|
|
-<!-- <execution>-->
|
|
|
-<!-- <id>build-image</id>-->
|
|
|
-<!-- <phase>package</phase>-->
|
|
|
-<!-- <goals>-->
|
|
|
-<!-- <goal>build</goal>-->
|
|
|
-<!-- </goals>-->
|
|
|
-<!-- </execution>-->
|
|
|
-<!-- </executions>-->
|
|
|
-<!-- <configuration>-->
|
|
|
-<!-- <imageName>power-system/${project.artifactId}:${project.version}</imageName>-->
|
|
|
-<!-- <dockerHost>${docker.host}</dockerHost>-->
|
|
|
-<!-- <baseImage>java:8</baseImage>-->
|
|
|
-<!-- <entryPoint>["java", "-jar","/${project.build.finalName}.jar"]-->
|
|
|
-<!-- </entryPoint>-->
|
|
|
-<!-- <resources>-->
|
|
|
-<!-- <resource>-->
|
|
|
-<!-- <targetPath>/</targetPath>-->
|
|
|
-<!-- <directory>${project.build.directory}</directory>-->
|
|
|
-<!-- <include>${project.build.finalName}.jar</include>-->
|
|
|
-<!-- </resource>-->
|
|
|
-<!-- </resources>-->
|
|
|
-<!-- </configuration>-->
|
|
|
-<!-- </plugin>-->
|
|
|
+ <!-- <plugin>-->
|
|
|
+ <!-- <groupId>com.spotify</groupId>-->
|
|
|
+ <!-- <artifactId>docker-maven-plugin</artifactId>-->
|
|
|
+ <!-- <version>${docker.maven.plugin.version}</version>-->
|
|
|
+ <!-- <executions>-->
|
|
|
+ <!-- <execution>-->
|
|
|
+ <!-- <id>build-image</id>-->
|
|
|
+ <!-- <phase>package</phase>-->
|
|
|
+ <!-- <goals>-->
|
|
|
+ <!-- <goal>build</goal>-->
|
|
|
+ <!-- </goals>-->
|
|
|
+ <!-- </execution>-->
|
|
|
+ <!-- </executions>-->
|
|
|
+ <!-- <configuration>-->
|
|
|
+ <!-- <imageName>file-collect/${project.artifactId}:${project.version}</imageName>-->
|
|
|
+ <!-- <dockerHost>${docker.host}</dockerHost>-->
|
|
|
+ <!-- <baseImage>java:8</baseImage>-->
|
|
|
+ <!-- <entryPoint>["java", "-jar","/${project.build.finalName}.jar"]-->
|
|
|
+ <!-- </entryPoint>-->
|
|
|
+ <!-- <resources>-->
|
|
|
+ <!-- <resource>-->
|
|
|
+ <!-- <targetPath>/</targetPath>-->
|
|
|
+ <!-- <directory>${project.build.directory}</directory>-->
|
|
|
+ <!-- <include>${project.build.finalName}.jar</include>-->
|
|
|
+ <!-- </resource>-->
|
|
|
+ <!-- </resources>-->
|
|
|
+ <!-- </configuration>-->
|
|
|
+ <!-- </plugin>-->
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|