blob: 053843d2b72834bffd2e31eb725cf3f06dbb223f [file] [log] [blame]
Pavel Aharoni6b61b882017-06-08 12:26:00 +03001<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
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
7 <artifactId>sdc-tosca</artifactId>
Jessica Wagantall655bfd72017-09-08 12:38:48 -07008 <name>sdc-sdc-tosca</name>
Pavel Aharoni6b61b882017-06-08 12:26:00 +03009 <description>SDC Tosca Parser JAR file for use by consumers</description>
Pavel Aharoni1a7bee72017-09-26 19:54:41 +030010 <version>1.1.52-SNAPSHOT</version>
Pavel Aharoni6b61b882017-06-08 12:26:00 +030011 <packaging>jar</packaging>
12
13 <properties>
14
15 <!-- ==================== -->
16 <!-- Generic properties -->
17 <!-- ==================== -->
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19
20 <!-- ==================== -->
21 <!-- Versions -->
22 <!-- ==================== -->
23 <!-- Global project version -->
24
25 <!-- Dependencies projects version -->
26 <sonar.skipDesign>true</sonar.skipDesign>
27 <sonar.projectBaseDir>${project.basedir}</sonar.projectBaseDir>
28 <sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
29 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
30 <sitePath>/content/sites/site/org/openecomp/sdc/sdc-tosca/${project.version}</sitePath>
31 <snapshots.path>snapshots</snapshots.path>
32 <releases.path>releases</releases.path>
Idan Amit9fdafa92017-09-10 09:26:13 +030033 <staging.profile.id>176c31dfe190a</staging.profile.id>
Pavel Aharoni6b61b882017-06-08 12:26:00 +030034
35 </properties>
36
37 <dependencies>
38
39 <dependency>
40 <groupId>org.slf4j</groupId>
41 <artifactId>slf4j-api</artifactId>
42 <version>1.7.10</version>
43 <scope>compile</scope>
44 </dependency>
45 <dependency>
46 <groupId>com.google.code.gson</groupId>
47 <artifactId>gson</artifactId>
48 <version>2.3.1</version>
49 <scope>compile</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.functionaljava</groupId>
54 <artifactId>functionaljava</artifactId>
55 <version>4.2</version>
56 <scope>compile</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>commons-io</groupId>
61 <artifactId>commons-io</artifactId>
62 <version>2.5</version>
63 <scope>compile</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>commons-codec</groupId>
68 <artifactId>commons-codec</artifactId>
69 <version>1.9</version>
70 <scope>compile</scope>
71 </dependency>
72
73 <!-- YAML parser -->
74 <dependency>
75 <groupId>org.yaml</groupId>
76 <artifactId>snakeyaml</artifactId>
77 <version>1.14</version>
78 <scope>compile</scope>
79 </dependency>
80
81 <!-- Apache Commons -->
82 <dependency>
83 <groupId>org.apache.commons</groupId>
84 <artifactId>commons-lang3</artifactId>
85 <version>3.5</version>
86 <scope>compile</scope>
87 </dependency>
88
89 <dependency>
90 <groupId>com.google.guava</groupId>
91 <artifactId>guava</artifactId>
92 <version>21.0</version>
93 <scope>compile</scope>
94 </dependency>
Pavel Aharoni1a7bee72017-09-26 19:54:41 +030095 <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
96 <dependency>
97 <groupId>com.fasterxml.jackson.core</groupId>
98 <artifactId>jackson-databind</artifactId>
99 <version>2.0.2</version>
100 </dependency>
Pavel Aharoni6b61b882017-06-08 12:26:00 +0300101
102 <!-- jtosca Tosca Parser -->
103 <dependency>
104 <groupId>org.openecomp.sdc.jtosca</groupId>
105 <artifactId>jtosca</artifactId>
Pavel Aharoni1a7bee72017-09-26 19:54:41 +0300106 <version>1.1.11-SNAPSHOT</version>
Pavel Aharoni6b61b882017-06-08 12:26:00 +0300107 </dependency>
108
109
110 <!-- TEST -->
111 <dependency>
112 <groupId>org.eclipse.jetty</groupId>
113 <artifactId>jetty-servlet</artifactId>
114 <scope>test</scope>
115 <version>9.2.10.v20150310</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.eclipse.jetty</groupId>
120 <artifactId>jetty-webapp</artifactId>
121 <version>9.2.10.v20150310</version>
122 <scope>test</scope>
123 </dependency>
124
125 <!--<dependency> -->
126 <!--<groupId>junit</groupId> -->
127 <!--<artifactId>junit</artifactId> -->
128 <!--<version>4.12</version> -->
129 <!--<scope>test</scope> -->
130 <!--</dependency> -->
131
132 <dependency>
133 <groupId>org.testng</groupId>
134 <artifactId>testng</artifactId>
135 <version>6.11</version>
136 <scope>test</scope>
137 </dependency>
138
139 <dependency>
140 <groupId>org.mockito</groupId>
141 <artifactId>mockito-all</artifactId>
142 <version>1.10.19</version>
143 <scope>test</scope>
144 </dependency>
145
146 <!-- <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId>
147 <version>1.1.2</version> <scope>test</scope> </dependency> -->
148
149 </dependencies>
150
151 <reporting>
152 <plugins>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-javadoc-plugin</artifactId>
156 <version>2.10.4</version>
157 <configuration>
158 <failOnError>false</failOnError>
159 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
160 <docletArtifact>
161 <groupId>org.umlgraph</groupId>
162 <artifactId>umlgraph</artifactId>
163 <version>5.6</version>
164 </docletArtifact>
165 <additionalparam>-views</additionalparam>
166 <useStandardDocletOptions>true</useStandardDocletOptions>
167 </configuration>
168 </plugin>
169 </plugins>
170 </reporting>
171
172 <build>
173 <plugins>
174 <plugin>
175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-site-plugin</artifactId>
177 <version>3.4</version>
178 <dependencies>
179 <dependency>
180 <groupId>org.apache.maven.wagon</groupId>
181 <artifactId>wagon-webdav-jackrabbit</artifactId>
182 <version>2.10</version>
183 </dependency>
184 </dependencies>
185 </plugin>
186
187 <plugin>
188 <groupId>org.jacoco</groupId>
189 <artifactId>jacoco-maven-plugin</artifactId>
190 <version>0.7.8</version>
191 <executions>
192 <!-- Unit-Tests -->
193 <execution>
194 <id>prepare-agent</id>
195 <goals>
196 <goal>prepare-agent</goal>
197 </goals>
198 <configuration>
199 <destFile>${sonar.jacoco.reportPath}</destFile>
200 </configuration>
201 </execution>
202 </executions>
203 </plugin>
204
205 <!-- Staging Plugin -->
206 <plugin>
207 <groupId>org.sonatype.plugins</groupId>
208 <artifactId>nexus-staging-maven-plugin</artifactId>
209 <version>1.6.7</version>
210 <extensions>true</extensions>
211 <configuration>
212 <nexusUrl>${nexus.proxy}</nexusUrl>
213 <stagingProfileId>${staging.profile.id}</stagingProfileId>
214 <serverId>ecomp-staging</serverId>
215 </configuration>
216 </plugin>
217
218 <plugin>
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-compiler-plugin</artifactId>
221 <version>2.5.1</version>
222 <inherited>true</inherited>
223 <configuration>
224 <source>1.8</source>
225 <target>1.8</target>
226 </configuration>
227 </plugin>
228 <plugin>
229 <groupId>org.apache.maven.plugins</groupId>
230 <artifactId>maven-javadoc-plugin</artifactId>
231 <version>2.10.3</version>
232 <configuration />
233 </plugin>
234 <plugin>
235 <groupId>org.codehaus.mojo</groupId>
236 <artifactId>license-maven-plugin</artifactId>
237 <version>1.10</version>
238 <configuration>
239 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
240 <processStartTag>============LICENSE_START=======================================================</processStartTag>
241 <processEndTag>============LICENSE_END=========================================================</processEndTag>
242 <sectionDelimiter>================================================================================</sectionDelimiter>
243 <licenseName>apache_v2</licenseName>
244 <inceptionYear>2017</inceptionYear>
245 <organizationName>AT&amp;T Intellectual Property. All rights
246 reserved.</organizationName>
247 <projectName>sdc-tosca</projectName>
248 <canUpdateCopyright>true</canUpdateCopyright>
249 <canUpdateDescription>true</canUpdateDescription>
250 <canUpdateLicense>true</canUpdateLicense>
251 <emptyLineAfterHeader>true</emptyLineAfterHeader>
252 <verbose>false</verbose>
253 <includes>
254 <include>**/*.java</include>
255 </includes>
256 </configuration>
257 <executions>
258 <execution>
259 <id>first</id>
260 <goals>
261 <goal>update-file-header</goal>
262 </goals>
263 <!--phase>process-sources</phase -->
264 </execution>
265 </executions>
266 </plugin>
267 <!-- Test -->
268 <plugin>
269 <groupId>org.apache.maven.plugins</groupId>
270 <artifactId>maven-surefire-plugin</artifactId>
271 <version>2.19.1</version>
272 <configuration>
273 <includes>
274 <include>**/ToscaParser***Test.class</include>
275 </includes>
276 </configuration>
277 </plugin>
278 </plugins>
279 </build>
280
281 <repositories>
282 <repository>
283 <id>central</id>
284 <name>Official Maven repository</name>
285 <url>http://repo2.maven.org/maven2/</url>
286 </repository>
287 <repository>
288 <id>ecomp-releases</id>
289 <name>Release Repository</name>
290 <url>${nexus.proxy}/content/repositories/releases/</url>
291 </repository>
292 <repository>
293 <id>ecomp-staging</id>
294 <name>Staging Repository</name>
295 <url>${nexus.proxy}/content/repositories/staging/</url>
296 </repository>
297 </repositories>
298
299 <distributionManagement>
300 <repository>
301 <id>ecomp-releases</id>
302 <name>Release Repository</name>
303 <url>${nexus.proxy}/content/repositories/${releases.path}/</url>
304 </repository>
305 <snapshotRepository>
306 <id>ecomp-snapshots</id>
307 <name>Snapshot Repository</name>
308 <url>${nexus.proxy}/content/repositories/${snapshots.path}/</url>
309 </snapshotRepository>
310 <site>
311 <id>ecomp-site</id>
312 <url>dav:${nexus.proxy}${sitePath}</url>
313 </site>
314 </distributionManagement>
315</project>