blob: 970f533ae50a6ce45022e993b8b923211bddb81f [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>
15 <!-- Common of SD&C -->
16 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020017 <groupId>org.openecomp.sdc</groupId>
18 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030019 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020020 <scope>provided</scope>
21 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030022
Michael Lando451a3402017-02-19 10:28:42 +020023 <dependency>
24 <groupId>ch.qos.logback</groupId>
25 <artifactId>logback-classic</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030026 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020027 <scope>provided</scope>
28 </dependency>
29
30 <dependency>
31 <groupId>ch.qos.logback</groupId>
32 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030033 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020034 <scope>provided</scope>
35 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030036
Michael Lando451a3402017-02-19 10:28:42 +020037 <dependency>
38 <groupId>org.slf4j</groupId>
39 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030040 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020041 <scope>provided</scope>
42 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030043
Michael Lando451a3402017-02-19 10:28:42 +020044 <dependency>
45 <groupId>org.codehaus.jackson</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030046 <artifactId>jackson-core-asl</artifactId>
47 <version>${codehaus.jackson.core}</version>
48 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +020049 </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>
Michael Landoed64b5e2017-06-09 03:19:04 +030057 <dependency>
58 <groupId>org.functionaljava</groupId>
59 <artifactId>functionaljava</artifactId>
60 <version>${functionaljava.version}</version>
61 <scope>provided</scope>
62 </dependency>
63
64 <!-- TEST -->
Michael Lando451a3402017-02-19 10:28:42 +020065 <dependency>
66 <groupId>junit</groupId>
67 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030068 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020069 <scope>test</scope>
70 </dependency>
71
Michael Lando451a3402017-02-19 10:28:42 +020072 </dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030073
Michael Lando451a3402017-02-19 10:28:42 +020074 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200115</project>