|
|
@ -54,4 +54,57 @@ |
|
|
</dependencies> |
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
|
<finalName>${project.artifactId}</finalName> |
|
|
|
|
|
<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> |
|
|
|
|
|
<configuration> |
|
|
|
|
|
<skipTests>true</skipTests> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
<plugin> |
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId> |
|
|
|
|
|
<configuration> |
|
|
|
|
|
<skip>true</skip> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
<plugin> |
|
|
|
|
|
<groupId>com.spotify</groupId> |
|
|
|
|
|
<artifactId>dockerfile-maven-plugin</artifactId> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
</plugins> |
|
|
|
|
|
|
|
|
|
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> |
|
|
|
|
|
|
|
|
|
|
|
<resources> |
|
|
|
|
|
<resource> |
|
|
|
|
|
<filtering>true</filtering> |
|
|
|
|
|
<directory>${basedir}/src/main/resources</directory> |
|
|
|
|
|
<includes> |
|
|
|
|
|
<include>**/application*.yml</include> |
|
|
|
|
|
<include>**/*.properties</include> |
|
|
|
|
|
<include>logback-spring.xml</include> |
|
|
|
|
|
<include>registry.conf</include> |
|
|
|
|
|
</includes> |
|
|
|
|
|
</resource> |
|
|
|
|
|
<resource> |
|
|
|
|
|
<directory>${basedir}/src/main/resources</directory> |
|
|
|
|
|
<excludes> |
|
|
|
|
|
<exclude>**/application*.yml</exclude> |
|
|
|
|
|
<exclude>**/*.properties</exclude> |
|
|
|
|
|
<exclude>logback-spring.xml</exclude> |
|
|
|
|
|
<exclude>registry.conf</exclude> |
|
|
|
|
|
</excludes> |
|
|
|
|
|
</resource> |
|
|
|
|
|
</resources> |
|
|
|
|
|
</build> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project> |
|
|
</project> |