summaryrefslogtreecommitdiffstats
path: root/prh-app-server/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'prh-app-server/pom.xml')
-rw-r--r--prh-app-server/pom.xml25
1 files changed, 17 insertions, 8 deletions
diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml
index a03e27f3..5a62e40e 100644
--- a/prh-app-server/pom.xml
+++ b/prh-app-server/pom.xml
@@ -22,6 +22,17 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>repackage</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <finalName>prh-app-server</finalName>
+ <mainClass>org.onap.dcaegen2.services.prh.MainApp</mainClass>
+ </configuration>
</plugin>
</plugins>
</build>
@@ -39,18 +50,16 @@
<!-- LOGGING DEPENDENCIES-->
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
</dependency>
-
<dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-core</artifactId>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jul-to-slf4j</artifactId>
</dependency>
-
<dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
+ <groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
</dependency>
<!--TESTS DEPENDENCIES -->