blob: b8365ff990f1fb97362e9bbbd89b4bd74774c6f7 [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"
Tomasz Golabek84237942019-05-23 14:33:40 +02002 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>
Michael Lando451a3402017-02-19 10:28:42 +02004
Tomasz Golabek84237942019-05-23 14:33:40 +02005 <groupId>org.openecomp.sdc.be</groupId>
6 <artifactId>common-be</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +03007
Tomasz Golabek84237942019-05-23 14:33:40 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Ofir Sonsino610ff242019-07-28 15:44:36 +030011 <version>1.5.1-SNAPSHOT</version>
Tomasz Golabek84237942019-05-23 14:33:40 +020012 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020013
Tomasz Golabek84237942019-05-23 14:33:40 +020014 <dependencies>
15 <!-- Common of SD&C -->
16 <dependency>
17 <groupId>org.openecomp.sdc</groupId>
18 <artifactId>common-app-api</artifactId>
19 <version>${project.version}</version>
20 <scope>provided</scope>
21 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +030022
Tomasz Golabek84237942019-05-23 14:33:40 +020023 <dependency>
24 <groupId>org.apache.commons</groupId>
25 <artifactId>commons-lang3</artifactId>
26 <version>${lang3.version}</version>
27 <scope>provided</scope>
28 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +030029
Tomasz Golabek84237942019-05-23 14:33:40 +020030 <dependency>
31 <groupId>ch.qos.logback</groupId>
32 <artifactId>logback-classic</artifactId>
33 <version>${logback.version}</version>
34 <scope>provided</scope>
35 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020036
Tomasz Golabek84237942019-05-23 14:33:40 +020037 <dependency>
38 <groupId>com.google.guava</groupId>
39 <artifactId>guava</artifactId>
40 <version>${guava.version}</version>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.functionaljava</groupId>
45 <artifactId>functionaljava</artifactId>
46 <version>${functionaljava.version}</version>
47 <scope>provided</scope>
48 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030049
Tomasz Golabek84237942019-05-23 14:33:40 +020050 <dependency>
51 <groupId>com.fasterxml.jackson.core</groupId>
52 <artifactId>jackson-databind</artifactId>
53 <version>${jackson.version}</version>
54 <scope>provided</scope>
55 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020056
Tomasz Golabek84237942019-05-23 14:33:40 +020057 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>${junit.version}</version>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.mockito</groupId>
65 <artifactId>mockito-core</artifactId>
66 <version>${mockito.version}</version>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.onap.sdc.common</groupId>
71 <artifactId>onap-tosca-datatype</artifactId>
72 <version>${tosca.datatype.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.projectlombok</groupId>
76 <artifactId>lombok</artifactId>
77 <version>${lombok.version}</version>
78 </dependency>
Tomasz Golabek3bdedab2019-08-22 11:21:04 +020079 <dependency>
80 <groupId>com.google.code.bean-matchers</groupId>
81 <artifactId>bean-matchers</artifactId>
82 <version>${bean-matchers.version}</version>
83 <scope>test</scope>
84 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020085
Tomasz Golabek84237942019-05-23 14:33:40 +020086 </dependencies>
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>com.github.sylvainlaurent.maven</groupId>
91 <artifactId>yaml-json-validator-maven-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>validate</id>
95 <phase>validate</phase>
96 <goals>
97 <goal>validate</goal>
98 </goals>
99 <configuration>
100 <validationSets>
101 <validationSet>
102 <includes>
103 <include>src/main/resources/**/*.y*ml</include>
104 <include>src/test/resources/**/*.y*ml</include>
105 </includes>
106 </validationSet>
107 <validationSet>
108 <includes>
109 <include>src/main/resources/**/*.json</include>
110 <include>src/test/resources/**/*.json</include>
111 </includes>
112 </validationSet>
113 </validationSets>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
Michael Landodc856bb2018-08-13 13:27:52 +0300120
Michael Lando451a3402017-02-19 10:28:42 +0200121</project>