Move to version 1.6.1
[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.6.1-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>compile</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>org.hamcrest</groupId>
59       <artifactId>hamcrest</artifactId>
60       <version>${hamcrest.version}</version>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.hamcrest</groupId>
65       <artifactId>hamcrest-library</artifactId>
66       <version>${hamcrest.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <version>${junit.version}</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-core</artifactId>
78       <version>${mockito.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.onap.sdc.common</groupId>
83       <artifactId>onap-tosca-datatype</artifactId>
84       <version>${tosca.datatype.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.onap.sdc.sdc-tosca</groupId>
88       <artifactId>sdc-tosca</artifactId>
89       <version>${sdc-tosca-parser.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.projectlombok</groupId>
93       <artifactId>lombok</artifactId>
94       <version>${lombok.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>com.google.code.bean-matchers</groupId>
98       <artifactId>bean-matchers</artifactId>
99       <version>${bean-matchers.version}</version>
100       <scope>test</scope>
101     </dependency>
102
103         <!-- Togglz core module (mandatory) -->
104         <dependency>
105             <groupId>org.togglz</groupId>
106             <artifactId>togglz-core</artifactId>
107             <version>${togglz.version}</version>
108         </dependency>
109
110         <!-- Togglz for Servlet environments (mandatory for webapps) -->
111         <dependency>
112             <groupId>org.togglz</groupId>
113             <artifactId>togglz-servlet</artifactId>
114             <version>${togglz.version}</version>
115         </dependency>
116
117         <!-- Togglz Admin Console -->
118         <dependency>
119             <groupId>org.togglz</groupId>
120             <artifactId>togglz-console</artifactId>
121             <version>${togglz.version}</version>
122         </dependency>
123
124         <!-- Togglz for testing -->
125         <dependency>
126             <groupId>org.togglz</groupId>
127             <artifactId>togglz-testing</artifactId>
128             <version>${togglz.version}</version>
129             <scope>test</scope>
130         </dependency>
131
132   </dependencies>
133   <build>
134     <plugins>
135       <plugin>
136         <artifactId>maven-jar-plugin</artifactId>
137         <version>${maven-jar-plugin.version}</version>
138         <executions>
139           <execution>
140             <id>default-jar</id>
141             <phase>package</phase>
142             <goals>
143               <goal>jar</goal>
144               <goal>test-jar</goal>
145             </goals>
146           </execution>
147         </executions>
148       </plugin>
149       <plugin>
150         <groupId>com.github.sylvainlaurent.maven</groupId>
151         <artifactId>yaml-json-validator-maven-plugin</artifactId>
152         <executions>
153           <execution>
154             <id>validate</id>
155             <phase>validate</phase>
156             <goals>
157               <goal>validate</goal>
158             </goals>
159             <configuration>
160               <validationSets>
161                 <validationSet>
162                   <includes>
163                     <include>src/main/resources/**/*.y*ml</include>
164                     <include>src/test/resources/**/*.y*ml</include>
165                   </includes>
166                 </validationSet>
167                 <validationSet>
168                   <includes>
169                     <include>src/main/resources/**/*.json</include>
170                     <include>src/test/resources/**/*.json</include>
171                   </includes>
172                 </validationSet>
173               </validationSets>
174             </configuration>
175           </execution>
176         </executions>
177       </plugin>
178     </plugins>
179   </build>
180
181 </project>