blob: 50de3e987467a38d8a334ab958e275eb4fa16bf2 [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"
ys969316a9fce2020-01-19 13:50:02 +02002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Tomasz Golabek84237942019-05-23 14:33:40 +02003 <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 Sonsino09d87892020-03-12 20:52:42 +020011 <version>1.7.0-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>
andre.schmidbf5eeb22019-09-27 13:27:11 +010020 <scope>compile</scope>
Tomasz Golabek84237942019-05-23 14:33:40 +020021 </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>
andre.schmid13af6212019-10-08 18:27:36 +010058 <groupId>org.hamcrest</groupId>
59 <artifactId>hamcrest</artifactId>
60 <version>${hamcrest.version}</version>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.hamcrest</groupId>
65 <artifactId>hamcrest-library</artifactId>
66 <version>${hamcrest.version}</version>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
Tomasz Golabek84237942019-05-23 14:33:40 +020070 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>${junit.version}</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.mockito</groupId>
77 <artifactId>mockito-core</artifactId>
78 <version>${mockito.version}</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.onap.sdc.common</groupId>
83 <artifactId>onap-tosca-datatype</artifactId>
84 <version>${tosca.datatype.version}</version>
85 </dependency>
86 <dependency>
andre.schmid13af6212019-10-08 18:27:36 +010087 <groupId>org.onap.sdc.sdc-tosca</groupId>
88 <artifactId>sdc-tosca</artifactId>
89 <version>${sdc-tosca-parser.version}</version>
90 </dependency>
91 <dependency>
Tomasz Golabek84237942019-05-23 14:33:40 +020092 <groupId>org.projectlombok</groupId>
93 <artifactId>lombok</artifactId>
94 <version>${lombok.version}</version>
95 </dependency>
Tomasz Golabek3bdedab2019-08-22 11:21:04 +020096 <dependency>
97 <groupId>com.google.code.bean-matchers</groupId>
98 <artifactId>bean-matchers</artifactId>
99 <version>${bean-matchers.version}</version>
100 <scope>test</scope>
101 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200102
ys969316a9fce2020-01-19 13:50:02 +0200103 <!-- Togglz core module (mandatory) -->
104 <dependency>
105 <groupId>org.togglz</groupId>
106 <artifactId>togglz-core</artifactId>
107 <version>${togglz.version}</version>
108 </dependency>
109
110 <!-- Togglz for Servlet environments (mandatory for webapps) -->
111 <dependency>
112 <groupId>org.togglz</groupId>
113 <artifactId>togglz-servlet</artifactId>
114 <version>${togglz.version}</version>
115 </dependency>
116
117 <!-- Togglz Admin Console -->
118 <dependency>
119 <groupId>org.togglz</groupId>
120 <artifactId>togglz-console</artifactId>
121 <version>${togglz.version}</version>
122 </dependency>
123
124 <!-- Togglz for testing -->
125 <dependency>
126 <groupId>org.togglz</groupId>
127 <artifactId>togglz-testing</artifactId>
128 <version>${togglz.version}</version>
129 <scope>test</scope>
130 </dependency>
131
Tomasz Golabek84237942019-05-23 14:33:40 +0200132 </dependencies>
133 <build>
134 <plugins>
135 <plugin>
andre.schmida80a2e22019-10-10 17:39:03 +0100136 <artifactId>maven-jar-plugin</artifactId>
137 <version>${maven-jar-plugin.version}</version>
138 <executions>
139 <execution>
140 <id>default-jar</id>
141 <phase>package</phase>
142 <goals>
143 <goal>jar</goal>
144 <goal>test-jar</goal>
145 </goals>
146 </execution>
147 </executions>
148 </plugin>
149 <plugin>
Tomasz Golabek84237942019-05-23 14:33:40 +0200150 <groupId>com.github.sylvainlaurent.maven</groupId>
151 <artifactId>yaml-json-validator-maven-plugin</artifactId>
152 <executions>
153 <execution>
154 <id>validate</id>
155 <phase>validate</phase>
156 <goals>
157 <goal>validate</goal>
158 </goals>
159 <configuration>
160 <validationSets>
161 <validationSet>
162 <includes>
163 <include>src/main/resources/**/*.y*ml</include>
164 <include>src/test/resources/**/*.y*ml</include>
165 </includes>
166 </validationSet>
167 <validationSet>
168 <includes>
169 <include>src/main/resources/**/*.json</include>
170 <include>src/test/resources/**/*.json</include>
171 </includes>
172 </validationSet>
173 </validationSets>
174 </configuration>
175 </execution>
176 </executions>
177 </plugin>
178 </plugins>
179 </build>
Michael Landodc856bb2018-08-13 13:27:52 +0300180
Michael Lando451a3402017-02-19 10:28:42 +0200181</project>