summaryrefslogtreecommitdiffstats
path: root/portal-BE/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'portal-BE/pom.xml')
-rw-r--r--portal-BE/pom.xml31
1 files changed, 25 insertions, 6 deletions
diff --git a/portal-BE/pom.xml b/portal-BE/pom.xml
index 9fa93475..6a42e871 100644
--- a/portal-BE/pom.xml
+++ b/portal-BE/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
@@ -11,13 +11,9 @@
<groupId>org.onap</groupId>
<artifactId>portal</artifactId>
<version>0.0.1-SNAPSHOT</version>
- <name>portal</name>
+ <name>portal-BE</name>
<description></description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
-
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -59,11 +55,29 @@
<scope>runtime</scope>
</dependency>
<dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module-junit4</artifactId>
+ <version>2.0.0</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito2</artifactId>
+ <version>2.0.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-logger</artifactId>
<version>2.6.0-SNAPSHOT</version>
@@ -107,6 +121,11 @@
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ </resources>
</build>
<repositories>