blob: 9d27eb8338cc60e24063b588e976d47c22022520 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<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.openecomp.sdc</groupId>
30 <artifactId>common-app-api</artifactId>
31 <version>${common-app-api.version}</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>ch.qos.logback</groupId>
36 <artifactId>logback-classic</artifactId>
37 <scope>provided</scope>
38 </dependency>
39
40 <dependency>
41 <groupId>ch.qos.logback</groupId>
42 <artifactId>logback-core</artifactId>
43 <scope>provided</scope>
44 </dependency>
45
46 <dependency>
47 <groupId>org.slf4j</groupId>
48 <artifactId>slf4j-api</artifactId>
49 <scope>provided</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.codehaus.jackson</groupId>
54 <artifactId>jackson-core-asl</artifactId>
55 <version>${codehaus.jackson.core}</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>com.google.guava</groupId>
61 <artifactId>guava</artifactId>
62 <version>${guava.version}</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <!-- TEST -->
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72
73
74 </dependencies>
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>