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