You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.1 KiB
71 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> |
|
<parent> |
|
<!-- Your own application should inherit from spring-boot-starter-parent --> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-samples</artifactId> |
|
<version>1.1.8.BUILD-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-boot-sample-profile</artifactId> |
|
<name>Spring Boot Profile Sample</name> |
|
<description>Spring Boot Profile Sample</description> |
|
<url>http://projects.spring.io/spring-boot/</url> |
|
<organization> |
|
<name>Pivotal Software, Inc.</name> |
|
<url>http://www.spring.io</url> |
|
</organization> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<classifier>exec</classifier> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>exec</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
<configuration> |
|
<classifier>exec</classifier> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
<configuration> |
|
<!-- Need this to ensure application.yml is excluded --> |
|
<forceCreation>true</forceCreation> |
|
<excludes> |
|
<exclude>application.yml</exclude> |
|
</excludes> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|