blob: c83d7a9ecb4814461f720a7ce475d51fb91796fb [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
Michael Lando451a3402017-02-19 10:28:42 +020014 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030015
Michael Lando451a3402017-02-19 10:28:42 +020016 <!-- Common of SD&C -->
17 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030020 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020021 <scope>provided</scope>
22 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030023
Michael Lando451a3402017-02-19 10:28:42 +020024 <dependency>
25 <groupId>ch.qos.logback</groupId>
26 <artifactId>logback-classic</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030027 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020028 <scope>provided</scope>
29 </dependency>
30
31 <dependency>
32 <groupId>ch.qos.logback</groupId>
33 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030034 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020035 <scope>provided</scope>
36 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030037
Michael Lando451a3402017-02-19 10:28:42 +020038 <dependency>
39 <groupId>org.slf4j</groupId>
40 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030041 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020042 <scope>provided</scope>
43 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030044
Michael Lando451a3402017-02-19 10:28:42 +020045 <dependency>
46 <groupId>org.codehaus.jackson</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030047 <artifactId>jackson-core-asl</artifactId>
48 <version>${codehaus.jackson.core}</version>
49 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +020050 </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>
Michael Landoed64b5e2017-06-09 03:19:04 +030058 <dependency>
59 <groupId>org.functionaljava</groupId>
60 <artifactId>functionaljava</artifactId>
61 <version>${functionaljava.version}</version>
62 <scope>provided</scope>
63 </dependency>
64
65 <!-- TEST -->
Michael Lando451a3402017-02-19 10:28:42 +020066 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030069 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020070 <scope>test</scope>
71 </dependency>
72
Michael Lando451a3402017-02-19 10:28:42 +020073 </dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030074
Michael Lando451a3402017-02-19 10:28:42 +020075 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200116</project>