change version of the master branch
[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.2.0-SNAPSHOT</version>
12         </parent>
13
14         <dependencies>
15         
16                 <!-- Common of SD&C -->
17                 <dependency>
18                         <groupId>org.openecomp.sdc</groupId>
19                         <artifactId>common-app-api</artifactId>
20                         <version>${project.version}</version>
21                         <scope>provided</scope>
22                 </dependency>
23                         
24                 <dependency>
25                         <groupId>ch.qos.logback</groupId>
26                         <artifactId>logback-classic</artifactId>
27             <version>${logback.version}</version>
28                         <scope>provided</scope>
29                 </dependency>
30
31                 <dependency>
32                         <groupId>ch.qos.logback</groupId>
33                         <artifactId>logback-core</artifactId>
34             <version>${logback.version}</version>
35                         <scope>provided</scope>
36                 </dependency>
37
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>slf4j-api</artifactId>
41             <version>${slf4j-api.version}</version>
42                         <scope>provided</scope>
43                 </dependency>
44
45                 <dependency>
46                         <groupId>org.codehaus.jackson</groupId>
47                         <artifactId>jackson-core-asl</artifactId>
48                         <version>${codehaus.jackson.core}</version>
49                         <scope>provided</scope>
50                 </dependency>
51
52                 <dependency>
53                         <groupId>com.google.guava</groupId>
54                         <artifactId>guava</artifactId>
55                         <version>${guava.version}</version>
56                         <scope>provided</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.functionaljava</groupId>
60                         <artifactId>functionaljava</artifactId>
61                         <version>${functionaljava.version}</version>
62                         <scope>provided</scope>
63                 </dependency>
64
65                 <!-- TEST -->
66                 <dependency>
67                         <groupId>junit</groupId>
68                         <artifactId>junit</artifactId>
69                         <version>${junit.version}</version>
70                         <scope>test</scope>
71                 </dependency>
72
73         </dependencies>
74         
75         <build>
76                 <pluginManagement>
77                         <plugins>
78                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
79                                         only. It has no influence on the Maven build itself. -->
80                                 <plugin>
81                                         <groupId>org.eclipse.m2e</groupId>
82                                         <artifactId>lifecycle-mapping</artifactId>
83                                         <version>1.0.0</version>
84                                         <configuration>
85                                                 <lifecycleMappingMetadata>
86                                                         <pluginExecutions>
87                                                                 <pluginExecution>
88                                                                         <pluginExecutionFilter>
89                                                                                 <groupId>fr.fastconnect</groupId>
90                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
91                                                                                 <versionRange>[1.0.0,)</versionRange>
92                                                                                 <goals>
93                                                                                         <goal>plant</goal>
94                                                                                 </goals>
95                                                                         </pluginExecutionFilter>
96                                                                         <action>
97                                                                                 <ignore />
98                                                                         </action>
99                                                                 </pluginExecution>
100                                                         </pluginExecutions>
101                                                 </lifecycleMappingMetadata>
102                                         </configuration>
103                                 </plugin>
104
105                                 <plugin>
106                                         <groupId>org.apache.maven.plugins</groupId>
107                                         <artifactId>maven-deploy-plugin</artifactId>
108                                         <version>2.7</version>
109                                         <configuration>
110                                                 <skip>true</skip>
111                                         </configuration>
112                                 </plugin>
113                         </plugins>
114                 </pluginManagement>
115         </build>
116 </project>