Unit tests for sdc-be-utils
[sdc.git] / common-be / 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
5   <groupId>org.openecomp.sdc.be</groupId>
6   <artifactId>common-be</artifactId>
7
8   <parent>
9     <groupId>org.openecomp.sdc</groupId>
10     <artifactId>sdc-main</artifactId>
11     <version>1.5.0-SNAPSHOT</version>
12   </parent>
13
14   <dependencies>
15     <!-- Common of SD&C -->
16     <dependency>
17       <groupId>org.openecomp.sdc</groupId>
18       <artifactId>common-app-api</artifactId>
19       <version>${project.version}</version>
20       <scope>provided</scope>
21     </dependency>
22
23     <dependency>
24       <groupId>org.apache.commons</groupId>
25       <artifactId>commons-lang3</artifactId>
26       <version>${lang3.version}</version>
27       <scope>provided</scope>
28     </dependency>
29
30     <dependency>
31       <groupId>ch.qos.logback</groupId>
32       <artifactId>logback-classic</artifactId>
33       <version>${logback.version}</version>
34       <scope>provided</scope>
35     </dependency>
36
37     <dependency>
38       <groupId>com.google.guava</groupId>
39       <artifactId>guava</artifactId>
40       <version>${guava.version}</version>
41       <scope>provided</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.functionaljava</groupId>
45       <artifactId>functionaljava</artifactId>
46       <version>${functionaljava.version}</version>
47       <scope>provided</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>com.fasterxml.jackson.core</groupId>
52       <artifactId>jackson-databind</artifactId>
53       <version>${jackson.version}</version>
54       <scope>provided</scope>
55     </dependency>
56
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <version>${junit.version}</version>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <version>${mockito.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.onap.sdc.common</groupId>
71       <artifactId>onap-tosca-datatype</artifactId>
72       <version>${tosca.datatype.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.projectlombok</groupId>
76       <artifactId>lombok</artifactId>
77       <version>${lombok.version}</version>
78     </dependency>
79
80   </dependencies>
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>com.github.sylvainlaurent.maven</groupId>
85         <artifactId>yaml-json-validator-maven-plugin</artifactId>
86         <executions>
87           <execution>
88             <id>validate</id>
89             <phase>validate</phase>
90             <goals>
91               <goal>validate</goal>
92             </goals>
93             <configuration>
94               <validationSets>
95                 <validationSet>
96                   <includes>
97                     <include>src/main/resources/**/*.y*ml</include>
98                     <include>src/test/resources/**/*.y*ml</include>
99                   </includes>
100                 </validationSet>
101                 <validationSet>
102                   <includes>
103                     <include>src/main/resources/**/*.json</include>
104                     <include>src/test/resources/**/*.json</include>
105                   </includes>
106                 </validationSet>
107               </validationSets>
108             </configuration>
109           </execution>
110         </executions>
111       </plugin>
112     </plugins>
113   </build>
114
115 </project>