pom update
[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.0.0-SNAPSHOT</version>
12         </parent>
13
14
15         <properties>
16                 <aspectj.version>1.7.4</aspectj.version>
17                 <hibernate-validator.version>5.3.4.Final</hibernate-validator.version>
18                 <groovy.version>2.3.5</groovy.version>
19                 <lucene.version>4.10.2</lucene.version>
20                 <mockito.version>1.9.0</mockito.version>
21                 <regex.version>3.0.3</regex.version>
22                 <codehaus.jackson.core>1.9.2</codehaus.jackson.core>
23         </properties>
24
25
26         <dependencies>
27
28                 <!-- yaml to object converter -->
29                 <dependency>
30                         <groupId>org.yaml</groupId>
31                         <artifactId>snakeyaml</artifactId>
32                         <version>1.14</version>
33                         <scope>provided</scope>
34                 </dependency>
35
36                 <dependency>
37                         <groupId>com.google.code.gson</groupId>
38                         <artifactId>gson</artifactId>
39                         <version>2.3.1</version>
40                         <scope>provided</scope>
41                 </dependency>
42                 <dependency>
43                         <groupId>commons-logging</groupId>
44                         <artifactId>commons-logging</artifactId>
45                         <version>1.2.1-SNAPSHOT</version>
46                         <scope>provided</scope>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>commons-codec</groupId>
51                         <artifactId>commons-codec</artifactId>
52                         <version>2.0-SNAPSHOT</version>
53                         <scope>provided</scope>
54                 </dependency>
55                 <!-- Common of SD&C -->
56                 <dependency>
57                         <groupId>org.springframework</groupId>
58                         <artifactId>spring-core</artifactId>
59                         <version>${spring.version}</version>
60                         <scope>provided</scope>
61                 </dependency>
62
63                 <dependency>
64                         <groupId>org.springframework</groupId>
65                         <artifactId>spring-beans</artifactId>
66                         <version>${spring.version}</version>
67                         <scope>provided</scope>
68                 </dependency>
69
70                 <dependency>
71                         <groupId>org.springframework</groupId>
72                         <artifactId>spring-context</artifactId>
73                         <version>${spring.version}</version>
74                         <scope>provided</scope>
75                 </dependency>
76
77                 <dependency>
78                         <groupId>org.springframework</groupId>
79                         <artifactId>spring-context-support</artifactId>
80                         <version>${spring.version}</version>
81                         <scope>provided</scope>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.springframework</groupId>
86                         <artifactId>spring-messaging</artifactId>
87                         <version>${spring.version}</version>
88                         <scope>provided</scope>
89                 </dependency>
90
91                 <dependency>
92                         <groupId>org.springframework</groupId>
93                         <artifactId>spring-web</artifactId>
94                         <version>${spring.version}</version>
95                         <scope>provided</scope>
96                 </dependency>
97
98                 <dependency>
99                         <groupId>org.springframework</groupId>
100                         <artifactId>spring-webmvc</artifactId>
101                         <version>${spring.version}</version>
102                         <scope>provided</scope>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>org.springframework</groupId>
107                         <artifactId>spring-aop</artifactId>
108                         <version>${spring.version}</version>
109                         <scope>provided</scope>
110                 </dependency>
111
112                 <dependency>
113                         <groupId>org.springframework</groupId>
114                         <artifactId>spring-aspects</artifactId>
115                         <version>${spring.version}</version>
116                         <scope>provided</scope>
117                 </dependency>
118
119                 <dependency>
120                         <groupId>org.springframework</groupId>
121                         <artifactId>spring-test</artifactId>
122                         <version>${spring.version}</version>
123                         <scope>test</scope>
124                 </dependency>
125
126                 <dependency>
127                         <groupId>org.springframework</groupId>
128                         <artifactId>spring-expression</artifactId>
129                         <version>${spring.version}</version>
130                         <scope>test</scope>
131                 </dependency>
132
133                 <dependency>
134                         <groupId>org.openecomp.sdc</groupId>
135                         <artifactId>common-app-api</artifactId>
136                         <version>${common-app-api.version}</version>
137                         <scope>provided</scope>
138                 </dependency>
139                 <dependency>
140                         <groupId>ch.qos.logback</groupId>
141                         <artifactId>logback-classic</artifactId>
142                         <scope>provided</scope>
143                 </dependency>
144
145                 <dependency>
146                         <groupId>ch.qos.logback</groupId>
147                         <artifactId>logback-core</artifactId>
148                         <scope>provided</scope>
149                 </dependency>
150                 
151                 <dependency>
152                         <groupId>org.slf4j</groupId>
153                         <artifactId>slf4j-api</artifactId>
154                         <scope>provided</scope>
155                 </dependency>
156                 
157                 <dependency>
158                         <groupId>org.codehaus.jackson</groupId>
159                         <artifactId>jackson-core-asl</artifactId>
160                         <version>${codehaus.jackson.core}</version>
161                         <scope>provided</scope>
162                 </dependency>
163
164                 <dependency>
165                         <groupId>com.google.guava</groupId>
166                         <artifactId>guava</artifactId>
167                         <version>${guava.version}</version>
168                         <scope>provided</scope>
169                 </dependency>
170                 
171                 <!-- TEST  -->
172                 <dependency>
173                         <groupId>junit</groupId>
174                         <artifactId>junit</artifactId>
175                         <scope>test</scope>
176                 </dependency>
177
178                 
179         </dependencies>
180         <build>
181                 <pluginManagement>
182                         <plugins>
183                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
184                                         only. It has no influence on the Maven build itself. -->
185                                 <plugin>
186                                         <groupId>org.eclipse.m2e</groupId>
187                                         <artifactId>lifecycle-mapping</artifactId>
188                                         <version>1.0.0</version>
189                                         <configuration>
190                                                 <lifecycleMappingMetadata>
191                                                         <pluginExecutions>
192                                                                 <pluginExecution>
193                                                                         <pluginExecutionFilter>
194                                                                                 <groupId>fr.fastconnect</groupId>
195                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
196                                                                                 <versionRange>[1.0.0,)</versionRange>
197                                                                                 <goals>
198                                                                                         <goal>plant</goal>
199                                                                                 </goals>
200                                                                         </pluginExecutionFilter>
201                                                                         <action>
202                                                                                 <ignore />
203                                                                         </action>
204                                                                 </pluginExecution>
205                                                         </pluginExecutions>
206                                                 </lifecycleMappingMetadata>
207                                         </configuration>
208                                 </plugin>
209
210                                 <plugin>
211                                         <groupId>org.apache.maven.plugins</groupId>
212                                         <artifactId>maven-deploy-plugin</artifactId>
213                                         <version>2.7</version>
214                                         <configuration>
215                                                 <skip>true</skip>
216                                         </configuration>
217                                 </plugin>
218                         </plugins>
219                 </pluginManagement>
220         </build>
221 </project>