blob: 180fc76fceed89502d24db4f161c6512c40608ff [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>
Michael Landoed64b5e2017-06-09 03:19:04 +03007
Michael Lando451a3402017-02-19 10:28:42 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
13
Tal Gitelman51d50f02017-12-10 18:55:03 +020014 <properties>
15 <sonar.skip>true</sonar.skip>
16 </properties>
17
Michael Lando451a3402017-02-19 10:28:42 +020018 <dependencies>
19 <!-- Common of SD&C -->
20 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020021 <groupId>org.openecomp.sdc</groupId>
22 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030023 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020024 <scope>provided</scope>
25 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030026
Michael Lando451a3402017-02-19 10:28:42 +020027 <dependency>
28 <groupId>ch.qos.logback</groupId>
29 <artifactId>logback-classic</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030030 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020031 <scope>provided</scope>
32 </dependency>
33
34 <dependency>
35 <groupId>ch.qos.logback</groupId>
36 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030037 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020038 <scope>provided</scope>
39 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030040
Michael Lando451a3402017-02-19 10:28:42 +020041 <dependency>
42 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030044 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020045 <scope>provided</scope>
46 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030047
Michael Lando451a3402017-02-19 10:28:42 +020048 <dependency>
49 <groupId>org.codehaus.jackson</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030050 <artifactId>jackson-core-asl</artifactId>
51 <version>${codehaus.jackson.core}</version>
52 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +020053 </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>
Michael Landoed64b5e2017-06-09 03:19:04 +030061 <dependency>
62 <groupId>org.functionaljava</groupId>
63 <artifactId>functionaljava</artifactId>
64 <version>${functionaljava.version}</version>
65 <scope>provided</scope>
66 </dependency>
67
68 <!-- TEST -->
Michael Lando451a3402017-02-19 10:28:42 +020069 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030072 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020073 <scope>test</scope>
74 </dependency>
75
Michael Lando451a3402017-02-19 10:28:42 +020076 </dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030077
Michael Lando451a3402017-02-19 10:28:42 +020078 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200119</project>