blob: c02de892b57f0756cb623014faa52fb338942c34 [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 Landob5fc68f2018-11-15 13:36:12 +020011 <version>1.4.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 Lando5b593492018-07-29 16:13:45 +030022
23 <dependency>
24 <groupId>org.apache.commons</groupId>
25 <artifactId>commons-lang3</artifactId>
26 <version>${lang3.version}</version>
27 <scope>provided</scope>
28 </dependency>
29
Michael Lando451a3402017-02-19 10:28:42 +020030 <dependency>
31 <groupId>ch.qos.logback</groupId>
32 <artifactId>logback-classic</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>
36
37 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020038 <groupId>com.google.guava</groupId>
39 <artifactId>guava</artifactId>
40 <version>${guava.version}</version>
41 <scope>provided</scope>
42 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030043 <dependency>
44 <groupId>org.functionaljava</groupId>
45 <artifactId>functionaljava</artifactId>
46 <version>${functionaljava.version}</version>
47 <scope>provided</scope>
48 </dependency>
49
Michael Landoa5445102018-03-04 14:53:33 +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>
56
Michael Lando451a3402017-02-19 10:28:42 +020057 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030060 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020061 <scope>test</scope>
62 </dependency>
taliofe4afd42019-04-14 15:37:20 +030063 <dependency>
64 <groupId>org.onap.sdc.common</groupId>
65 <artifactId>onap-tosca-datatype</artifactId>
66 <version>${tosca.datatype.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.projectlombok</groupId>
70 <artifactId>lombok</artifactId>
71 <version>${lombok.version}</version>
72 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020073
taliofe4afd42019-04-14 15:37:20 +030074 </dependencies>
dekstroza37843cb2018-05-18 14:42:24 +010075 <build>
76 <plugins>
77 <plugin>
78 <groupId>com.github.sylvainlaurent.maven</groupId>
79 <artifactId>yaml-json-validator-maven-plugin</artifactId>
80 <executions>
81 <execution>
82 <id>validate</id>
83 <phase>validate</phase>
84 <goals>
85 <goal>validate</goal>
86 </goals>
87 <configuration>
88 <validationSets>
89 <validationSet>
90 <includes>
91 <include>src/main/resources/**/*.y*ml</include>
92 <include>src/test/resources/**/*.y*ml</include>
93 </includes>
94 </validationSet>
95 <validationSet>
96 <includes>
97 <include>src/main/resources/**/*.json</include>
98 <include>src/test/resources/**/*.json</include>
99 </includes>
100 </validationSet>
101 </validationSets>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
106 </plugins>
107 </build>
Michael Landodc856bb2018-08-13 13:27:52 +0300108
Michael Lando451a3402017-02-19 10:28:42 +0200109</project>