Add (un)deploy actions in xapp mgr controller
[portal/ric-dashboard.git] / webapp-backend / pom.xml
index b8657ca..3b06ab9 100644 (file)
@@ -36,7 +36,12 @@ limitations under the License.
        </properties>
        <dependencies>
                <dependency>
-                       <groupId>${project.groupId}</groupId>
+                       <groupId>org.oranosc.ric.e2mgr.client</groupId>
+                       <artifactId>e2-mgr-client</artifactId>
+                       <version>0.0.1-SNAPSHOT</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.oranosc.ric.xappmgr.client</groupId>
                        <artifactId>xapp-mgr-client</artifactId>
                        <version>0.0.10-SNAPSHOT</version>
                </dependency>
@@ -44,25 +49,17 @@ limitations under the License.
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-web</artifactId>
                </dependency>
-               <dependency>
-                       <groupId>org.springframework.boot</groupId>
-                       <artifactId>spring-boot-starter-test</artifactId>
-                       <scope>test</scope>
-               </dependency>
                <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-api</artifactId>
-                       <!-- Spring-boot sets the version -->
                </dependency>
                <dependency>
                        <groupId>ch.qos.logback</groupId>
                        <artifactId>logback-classic</artifactId>
-                       <!-- Spring-boot sets the version -->
                </dependency>
                <dependency>
                        <groupId>ch.qos.logback</groupId>
                        <artifactId>logback-core</artifactId>
-                       <!-- Spring-boot sets the version -->
                </dependency>
                <dependency>
                        <groupId>io.springfox</groupId>
@@ -74,6 +71,17 @@ limitations under the License.
                        <artifactId>springfox-swagger-ui</artifactId>
                        <version>${springfox.version}</version>
                </dependency>
+               <!-- Mockito supports development, not just testing -->
+               <dependency>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-core</artifactId>
+               </dependency>
+               <!-- Test dependencies -->
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-test</artifactId>
+                       <scope>test</scope>
+               </dependency>
        </dependencies>
        <build>
                <plugins>