blob: 6a10d8476aae40340260c0b61f151bd527501669 [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>
Michael Lando451a3402017-02-19 10:28:42 +020031 <groupId>com.google.guava</groupId>
32 <artifactId>guava</artifactId>
33 <version>${guava.version}</version>
34 <scope>provided</scope>
35 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030036 <dependency>
37 <groupId>org.functionaljava</groupId>
38 <artifactId>functionaljava</artifactId>
39 <version>${functionaljava.version}</version>
40 <scope>provided</scope>
41 </dependency>
42
Michael Landoa5445102018-03-04 14:53:33 +020043 <dependency>
44 <groupId>com.fasterxml.jackson.core</groupId>
45 <artifactId>jackson-databind</artifactId>
46 <version>${jackson.version}</version>
47 <scope>provided</scope>
48 </dependency>
49
Michael Lando451a3402017-02-19 10:28:42 +020050 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030053 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020054 <scope>test</scope>
55 </dependency>
56
Michael Lando451a3402017-02-19 10:28:42 +020057 </dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030058
Michael Lando451a3402017-02-19 10:28:42 +020059 <build>
60 <pluginManagement>
61 <plugins>
Michael Lando451a3402017-02-19 10:28:42 +020062 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-deploy-plugin</artifactId>
65 <version>2.7</version>
66 <configuration>
67 <skip>true</skip>
68 </configuration>
69 </plugin>
70 </plugins>
71 </pluginManagement>
72 </build>
Michael Lando451a3402017-02-19 10:28:42 +020073</project>