aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZlatko Murgoski <zlatko.murgoski@nokia.com>2019-06-12 15:27:51 +0200
committerZlatko Murgoski <zlatko.murgoski@nokia.com>2019-06-12 15:29:02 +0200
commitc3a2fd25011e1777ef48d79632170c0ed913f928 (patch)
tree3c101a66f07991d8de5632f204f705acfc1b03ce
parent2bff7994a2bf880694a4c967b488ce55f3911af2 (diff)
No runtime manifest
https://jira.onap.org/browse/DCAEGEN2-1614 Issue-ID: DCAEGEN2-1614 Signed-off-by: Zlatko Murgoski <zlatko.murgoski@nokia.com> Change-Id: I8dc4c7d1c7ba6a7c2386f8bce213fc1c2a73befa
-rw-r--r--pom.xml69
1 files changed, 11 insertions, 58 deletions
diff --git a/pom.xml b/pom.xml
index 61d5ddf1..677736f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,26 +50,6 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.0.2.RELEASE</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
@@ -104,43 +84,6 @@
</pluginManagement>
<plugins>
<plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <showWarnings>true</showWarnings>
- <showDeprecation>true</showDeprecation>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <excludeResources>true</excludeResources>
- </configuration>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <Implementation-Build-Version>${project.version}</Implementation-Build-Version>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
@@ -161,9 +104,19 @@
</executions>
</plugin>
<plugin>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>repackage</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
- <!-- minimize console output messages -->
<quiet>true</quiet>
<verbose>false</verbose>
<useStandardDocletOptions>false</useStandardDocletOptions>