Update Resume Logic and Add Workflow Listeners
[so.git] / adapters / mso-catalog-db-adapter / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so</groupId>
6     <artifactId>adapters</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8   </parent>
9
10   <groupId>org.onap.so.adapters</groupId>
11   <artifactId>mso-catalog-db-adapter</artifactId>
12   <packaging>jar</packaging>
13   <properties>
14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16     <java.version>1.8</java.version>
17   </properties>
18   <build>
19     <plugins>
20       <plugin>
21         <groupId>org.springframework.boot</groupId>
22         <artifactId>spring-boot-maven-plugin</artifactId>
23         <version>${springboot.version}</version>
24         <configuration>
25           <mainClass>org.onap.so.adapters.catalogdb.CatalogDBApplication</mainClass>
26         </configuration>
27         <executions>
28           <execution>
29             <goals>
30               <goal>repackage</goal>
31             </goals>
32           </execution>
33         </executions>
34       </plugin>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-dependency-plugin</artifactId>
38         <executions>
39           <execution>
40             <id>extract-docker-file</id>
41           </execution>
42         </executions>
43       </plugin>
44       <plugin>
45         <groupId>io.fabric8</groupId>
46         <artifactId>fabric8-maven-plugin</artifactId>
47         <executions>
48           <execution>
49             <id>start</id>
50           </execution>
51         </executions>
52       </plugin>
53       <plugin>
54         <groupId>org.apache.maven.plugins</groupId>
55         <artifactId>maven-compiler-plugin</artifactId>
56         <version>3.3</version>
57         <configuration>
58           <source>1.8</source>
59           <target>1.8</target>
60           <fork>true</fork>
61           <compilerArgs>
62             <arg>-parameters</arg>
63           </compilerArgs>
64         </configuration>
65       </plugin>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-surefire-plugin</artifactId>
69         <executions>
70           <execution>
71             <id>default-test</id>
72             <goals>
73               <goal>test</goal>
74             </goals>
75             <configuration>
76               <includes>
77                 <include>**/AllTestsTestSuite.java</include>
78               </includes>
79               <parallel>suites</parallel>
80             </configuration>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85     <pluginManagement>
86       <plugins>
87         <plugin>
88           <groupId>org.jacoco</groupId>
89           <artifactId>jacoco-maven-plugin</artifactId>
90         </plugin>
91       </plugins>
92     </pluginManagement>
93     <finalName>${project.artifactId}-${project.version}</finalName>
94   </build>
95   <dependencyManagement>
96     <dependencies>
97       <dependency>
98         <!-- Import dependency management from Spring Boot -->
99         <groupId>org.springframework.boot</groupId>
100         <artifactId>spring-boot-dependencies</artifactId>
101         <version>${springboot.version}</version>
102         <type>pom</type>
103         <scope>import</scope>
104       </dependency>
105     </dependencies>
106   </dependencyManagement>
107   <dependencies>
108     <dependency>
109       <groupId>org.springframework.boot</groupId>
110       <artifactId>spring-boot-starter-web</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>io.swagger</groupId>
114       <artifactId>swagger-jersey2-jaxrs</artifactId>
115       <version>1.5.16</version>
116     </dependency>
117     <dependency>
118       <groupId>org.mariadb.jdbc</groupId>
119       <artifactId>mariadb-java-client</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.springframework.boot</groupId>
123       <artifactId>spring-boot-starter-actuator</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.springframework.boot</groupId>
127       <artifactId>spring-boot-starter-jersey</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.springframework.boot</groupId>
131       <artifactId>spring-boot-starter-data-jpa</artifactId>
132       <exclusions>
133         <exclusion>
134           <groupId>org.apache.tomcat</groupId>
135           <artifactId>tomcat-jdbc</artifactId>
136         </exclusion>
137       </exclusions>
138     </dependency>
139     <dependency>
140       <groupId>org.springframework.boot</groupId>
141       <artifactId>spring-boot-starter-test</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.onap.so</groupId>
146       <artifactId>mso-catalog-db</artifactId>
147       <version>${project.version}</version>
148     </dependency>
149     <dependency>
150       <groupId>uk.co.blackpepper.bowman</groupId>
151       <artifactId>bowman-client</artifactId>
152       <version>0.3.0</version>
153     </dependency>
154     <dependency>
155       <groupId>ch.vorburger.mariaDB4j</groupId>
156       <artifactId>mariaDB4j</artifactId>
157       <version>2.2.3</version>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.flywaydb</groupId>
162       <artifactId>flyway-core</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>io.micrometer</groupId>
166       <artifactId>micrometer-core</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>io.micrometer</groupId>
170       <artifactId>micrometer-registry-prometheus</artifactId>
171     </dependency>
172   </dependencies>
173 </project>