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