diff options
author | elinuxhenrik <henrik.b.andersson@est.tech> | 2018-09-18 14:39:34 +0200 |
---|---|---|
committer | elinuxhenrik <henrik.b.andersson@est.tech> | 2018-09-18 22:06:30 +0200 |
commit | e0551f4404e1011ccd9d8ca4c3e9c441360d9d2f (patch) | |
tree | 43043ae90a146078220a474197ffd8a4132d3fc4 /datafile-app-server/pom.xml | |
parent | f394594ec70aaf1eefa4f23b80226c3426dbc17a (diff) |
Fix Sonar build problems
Change-Id: I92896b289e3a3cd0387b4b864dceacdf5c8c0403
Issue-ID: DCAEGEN2-792
Signed-off-by: elinuxhenrik <henrik.b.andersson@est.tech>
Diffstat (limited to 'datafile-app-server/pom.xml')
-rw-r--r-- | datafile-app-server/pom.xml | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/datafile-app-server/pom.xml b/datafile-app-server/pom.xml index 339daeb4..860c1cc0 100644 --- a/datafile-app-server/pom.xml +++ b/datafile-app-server/pom.xml @@ -33,26 +33,21 @@ <properties> <docker.image.name>onap/${project.groupId}.${project.artifactId}</docker.image.name> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> - <project.fatJar.finalName>datafile-happ-server</project.fatJar.finalName> - <nexusproxy>https://nexus.onap.org</nexusproxy> - <snapshots.path>content/repositories/snapshots/</snapshots.path> - <releases.path>content/repositories/releases/</releases.path> </properties> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>repackage</goal> - </goals> - </execution> - </executions> <configuration> - <finalName>${project.fatJar.finalName}</finalName> + <finalName>${project.artifactId}</finalName> <mainClass>org.onap.dcaegen2.collectors.datafile.MainApp</mainClass> </configuration> </plugin> @@ -66,12 +61,11 @@ <tag>latest</tag> </imageTags> <baseImage>openjdk:8-jre-alpine</baseImage> - <entryPoint>["java", "-jar", "/opt/${project.fatJar.finalName}.jar"]</entryPoint> <resources> <resource> - <targetPath>/opt</targetPath> <directory>${project.build.directory}</directory> - <include>${project.fatJar.finalName}.jar</include> + <include>${project.artifactId}.jar</include> + <targetPath>/target</targetPath> </resource> <resource> <targetPath>/config</targetPath> @@ -83,6 +77,7 @@ <expose>8100</expose> <expose>8433</expose> </exposes> + <cmd>["java", "-jar", "/target/${project.artifactId}.jar"]</cmd> </configuration> <executions> <execution> @@ -132,6 +127,7 @@ </plugin> </plugins> </build> + <dependencies> <dependency> <groupId>io.projectreactor</groupId> |