Make jars thin

This commit is contained in:
Dave Syer
2016-12-16 10:41:16 +00:00
parent a8141d96a7
commit 53fa8ca0dc

22
pom.xml
View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>1.2.0.RELEASE</version>
<version>1.3.0.BUILD-SNAPSHOT</version>
<relativePath />
</parent>
@@ -18,6 +18,7 @@
<java.version>1.8</java.version>
<reactor.version>3.0.2.RELEASE</reactor.version>
<spring-cloud-stream.version>1.1.0.BUILD-SNAPSHOT</spring-cloud-stream.version>
<wrapper.version>0.0.1.BUILD-SNAPSHOT</wrapper.version>
</properties>
<dependencyManagement>
@@ -43,6 +44,25 @@
<module>spring-cloud-function-web</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<dependencies>
<dependency>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher</artifactId>
<version>${wrapper.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>spring</id>