Add serviceOrder rest services
[externalapi/nbi.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 2d04270..9e03cc6 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                        <artifactId>spring-boot-starter-web</artifactId>
                </dependency>
 
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-data-jpa</artifactId>
+               </dependency>
+
                <dependency>
                        <groupId>org.apache.commons</groupId>
                        <artifactId>commons-io</artifactId>
                        <version>1.9.3</version>
                </dependency>
 
+               <dependency>
+                       <groupId>javax.validation</groupId>
+                       <artifactId>validation-api</artifactId>
+                       <version>2.0.1.Final</version>
+               </dependency>
+
                <dependency>
                        <groupId>org.apache.commons</groupId>
                        <artifactId>commons-lang3</artifactId>
                        <version>3.4</version>
                </dependency>
 
+               <!-- mongo -->
+
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-data-mongodb</artifactId>
+               </dependency>
+
+               <!-- mysql -->
+
+               <dependency>
+                       <groupId>mysql</groupId>
+                       <artifactId>mysql-connector-java</artifactId>
+               </dependency>
+
+               <!-- swagger -->
+
+               <dependency>
+                       <groupId>io.swagger</groupId>
+                       <artifactId>swagger-annotations</artifactId>
+                       <version>1.5.18</version>
+               </dependency>
+
                <!-- jackson -->
 
                <dependency>
                        <scope>test</scope>
                </dependency>
 
-               <!-- wiremock -->
+               <!-- test h2 -->
+
+               <dependency>
+                       <groupId>com.h2database</groupId>
+                       <artifactId>h2</artifactId>
+                       <scope>test</scope>
+               </dependency>
+
+               <dependency>
+                       <groupId>de.flapdoodle.embed</groupId>
+                       <artifactId>de.flapdoodle.embed.mongo</artifactId>
+                       <version>${embedded-mongo.version}</version>
+                       <scope>test</scope>
+               </dependency>
+
+               <!-- test wiremock -->
 
                <dependency>
                        <groupId>org.springframework.cloud</groupId>