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