Uber jar naming changes

Separate artifacts for kafka and rabbit binders with different classifiers
This commit is contained in:
Soby Chacko
2018-08-16 11:58:43 -04:00
parent 49428f2bb6
commit f34fd120e9
15 changed files with 309 additions and 9 deletions

View File

@@ -40,6 +40,17 @@
<artifactId>spring-cloud-stream-binder-kafka</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>kafka</classifier>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>rabbit-binder</id>
@@ -49,6 +60,17 @@
<artifactId>spring-cloud-stream-binder-rabbit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>rabbit</classifier>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>