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