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