|
@@ -5,8 +5,8 @@
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<groupId>org.example</groupId>
|
|
|
- <artifactId>code_build_test</artifactId>
|
|
|
- <version>1.0-SNAPSHOT</version>
|
|
|
+ <artifactId>code-test</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
|
|
|
<!--导入springboot 父工程-->
|
|
|
<parent>
|
|
@@ -21,4 +21,66 @@
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
+
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>dev</id>
|
|
|
+ <!--默认激活当前配置-->
|
|
|
+ <activation>
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
+ </activation>
|
|
|
+ <properties>
|
|
|
+ <profiles.active>dev</profiles.active>
|
|
|
+ <!-- Docker 配置 -->
|
|
|
+ <docker.dockerHost>http://172.16.90.64:22375</docker.dockerHost>
|
|
|
+ <docker.serviceId>DockerHub</docker.serviceId>
|
|
|
+ <docker.image.version>1.0.0</docker.image.version>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>pro</id>
|
|
|
+ <properties>
|
|
|
+ <profiles.active>pro</profiles.active>
|
|
|
+ <!-- Docker 配置 -->
|
|
|
+ <docker.dockerHost>http://172.17.14.184:22375</docker.dockerHost>
|
|
|
+ <docker.serviceId>DockerHub</docker.serviceId>
|
|
|
+ <docker.image.version>1.0.1</docker.image.version>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>2.18.1</version>
|
|
|
+ <configuration>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>docker-maven-plugin</artifactId>
|
|
|
+ <version>1.2.2</version>
|
|
|
+ <configuration>
|
|
|
+ <serverId>${docker.serviceId}</serverId>
|
|
|
+ <dockerHost>${docker.dockerHost}</dockerHost>
|
|
|
+ <imageName>docker.io/${project.artifactId}:${docker.image.version}</imageName>
|
|
|
+ <dockerDirectory>${project.basedir}/src</dockerDirectory>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <targetPath>/</targetPath>
|
|
|
+ <directory>${project.build.directory}</directory>
|
|
|
+ <include>${project.build.finalName}.jar</include>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|