blob: f16ca605119f9cbd16ab7a39c1fd308d20e7a821 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<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>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +02004 <groupId>org.onap.vid</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -04005 <artifactId>vid-parent</artifactId>
6 <packaging>pom</packaging>
Jessica Wagantall88c65472017-09-08 15:10:11 -07007 <name>vid</name>
jimmydot3982f4f2017-05-07 14:58:24 -04008
9 <profiles>
10 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
11
12 <profile>
13 <id>onap</id>
14 <activation>
15 <activeByDefault>true</activeByDefault>
16 </activation>
17 <modules>
18 <module>vid-app-common</module>
Sonsino, Ofir (os0695)8c38abe2018-08-12 16:09:11 +030019 <module>vid-webpack-master</module>
jimmydot3982f4f2017-05-07 14:58:24 -040020 <module>epsdk-app-onap</module>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020021 <!--module>vid-automation</module-->
Sonsino, Ofir (os0695)8c38abe2018-08-12 16:09:11 +030022 <!--module>vid-ext-services-simulator</module-->
jimmydot3982f4f2017-05-07 14:58:24 -040023 </modules>
24
25 <repositories>
26 <repository>
27 <id>ecomp-releases</id>
28 <name>VID Release Repository</name>
29 <url>${nexusproxy}/${releaseNexusPath}</url>
30 </repository>
31 <repository>
32 <id>ecomp-snapshots</id>
33 <name>VID Snapshot Repository</name>
34 <url>${nexusproxy}/${snapshotNexusPath}</url>
35 </repository>
36 <repository>
37 <id>ecomp-staging</id>
38 <name>VID Staging Repository</name>
39 <url>${nexusproxy}/${stagingNexusPath}</url>
40 </repository>
41 <repository>
42 <!-- Snapshots repository has ECOMP snapshot artifacts -->
43 <id>oss-snapshots</id>
44 <name>oss Central - Snapshots</name>
45 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
46 </repository>
47 </repositories>
48
49 <distributionManagement>
50 <repository>
51 <id>ecomp-releases</id>
52 <name>VID Release Repository</name>
53 <url>${nexusproxy}/${releaseNexusPath}</url>
54 </repository>
55 <snapshotRepository>
56 <id>ecomp-snapshots</id>
57 <name>VID Snapshot Repository</name>
58 <url>${nexusproxy}/${snapshotNexusPath}</url>
59 </snapshotRepository>
60 <!-- added for javadoc -->
61 <site>
62 <id>ecomp-site</id>
63 <url>dav:${nexusproxy}${sitePath}</url>
64 </site>
65 </distributionManagement>
66
67 </profile>
68
69 <profile>
70 <id>docker</id>
71 <modules>
72 <module>vid-app-common</module>
73 <module>epsdk-app-onap</module>
74 <module>deliveries</module>
75 </modules>
76 </profile>
77 </profiles>
78
79 <properties>
80 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
81 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +030082 <build.version>3.0.0-SNAPSHOT</build.version>
jimmydot3982f4f2017-05-07 14:58:24 -040083 <nexusproxy>https://nexus.onap.org</nexusproxy>
84 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
85 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
86 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020087 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040088 </properties>
89
90 <build>
91 <plugins>
Ofir Sonsinoc52c3b42017-12-10 13:58:42 +020092 <plugin>
93 <groupId>org.codehaus.mojo</groupId>
94 <artifactId>versions-maven-plugin</artifactId>
95 <version>1.3.1</version>
96 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -040097 <plugin>
98 <groupId>org.sonatype.plugins</groupId>
99 <artifactId>nexus-staging-maven-plugin</artifactId>
100 <version>1.6.7</version>
101 <extensions>true</extensions>
102 <configuration>
103 <nexusUrl>${nexusproxy}</nexusUrl>
104 <stagingProfileId>176c31dfe190a</stagingProfileId>
105 <serverId>ecomp-staging</serverId>
106 </configuration>
107 </plugin>
108
jimmydotf88fada2017-05-07 19:42:59 -0400109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-site-plugin</artifactId>
112 <version>3.6</version>
113 <dependencies>
114 <dependency>
115 <groupId>org.apache.maven.wagon</groupId>
116 <artifactId>wagon-webdav-jackrabbit</artifactId>
117 <version>2.10</version>
118 </dependency>
119 </dependencies>
120 </plugin>
jimmydotf88fada2017-05-07 19:42:59 -0400121 <plugin>
122 <groupId>org.sonatype.plugins</groupId>
123 <artifactId>nexus-staging-maven-plugin</artifactId>
124 <version>1.6.7</version>
125 <extensions>true</extensions>
126 <configuration>
127 <nexusUrl>${nexusproxy}</nexusUrl>
128 <stagingProfileId>176c31dfe190a</stagingProfileId>
129 <serverId>ecomp-staging</serverId>
130 </configuration>
131 </plugin>
132
jimmydot3982f4f2017-05-07 14:58:24 -0400133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-deploy-plugin</artifactId>
136 <version>2.8</version>
137 </plugin>
138
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-surefire-plugin</artifactId>
142 <version>2.17</version>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-compiler-plugin</artifactId>
148 <version>2.3.2</version>
149
150 <configuration>
151 <debug>true</debug>
152 <compilerArgument>-Xlint</compilerArgument>
153 <verbose>true</verbose>
154 <showDeprecation>true</showDeprecation>
155 <showWarnings>true</showWarnings>
156 <source>1.8</source>
157 <target>1.8</target>
158 </configuration>
159 </plugin>
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-site-plugin</artifactId>
163 <version>3.6</version>
164 <dependencies>
165 <dependency>
166 <groupId>org.apache.maven.wagon</groupId>
167 <artifactId>wagon-webdav-jackrabbit</artifactId>
168 <version>2.10</version>
169 </dependency>
170 </dependencies>
171 </plugin>
172 <plugin>
Ofir Sonsino2f20b002017-12-11 11:21:00 +0200173 <groupId>org.sonarsource.scanner.maven</groupId>
174 <artifactId>sonar-maven-plugin</artifactId>
175 <version>3.3.0.603</version>
176 </plugin>
177 <plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400178 <groupId>com.blackducksoftware.integration</groupId>
179 <artifactId>hub-maven-plugin</artifactId>
180 <version>1.4.0</version>
181 <inherited>false</inherited>
182 <configuration>
183 <hubProjectName>${project.name}</hubProjectName>
184 <outputDirectory>${project.basedir}</outputDirectory>
185 </configuration>
186 <executions>
187 <execution>
188 <id>create-bdio-file</id>
189 <phase>package</phase>
190 <goals>
191 <goal>createHubOutput</goal>
192 </goals>
193 </execution>
194 </executions>
195 </plugin>
196 </plugins>
197 </build>
198
199 <!-- added for javadoc -->
200 <pluginRepositories>
201 <!-- Black Duck plugin dependencies -->
202 <pluginRepository>
203 <id>JCenter</id>
204 <name>JCenter Repository</name>
205 <url>http://jcenter.bintray.com</url>
206 </pluginRepository>
207
208 <pluginRepository>
209 <id>Restlet</id>
210 <name>Restlet Repository</name>
211 <url>http://maven.restlet.com</url>
212 </pluginRepository>
213 </pluginRepositories>
214 <reporting>
215 <plugins>
216
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-javadoc-plugin</artifactId>
220 <version>2.10.4</version>
221 <configuration>
222 <failOnError>false</failOnError>
223 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
224 <docletArtifact>
225 <groupId>org.umlgraph</groupId>
226 <artifactId>umlgraph</artifactId>
227 <version>5.6</version>
228 </docletArtifact>
229 <additionalparam>-views</additionalparam>
230 <useStandardDocletOptions>true</useStandardDocletOptions>
231 </configuration>
232 </plugin>
233 </plugins>
234 </reporting>
235 <dependencies>
236 <dependency>
237 <groupId>junit</groupId>
238 <artifactId>junit</artifactId>
239 <version>4.11</version>
240 <scope>test</scope>
241 </dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300242
243 <!--Overide versions for latest security fixes-->
244 <dependency>
245 <groupId>ch.qos.logback</groupId>
246 <artifactId>logback-core</artifactId>
247 <version>1.2.3</version>
248 </dependency>
249 <dependency>
250 <groupId>ch.qos.logback</groupId>
251 <artifactId>logback-classic</artifactId>
252 <version>1.2.3</version>
253 </dependency>
254 <dependency>
255 <groupId>commons-collections</groupId>
256 <artifactId>commons-collections</artifactId>
257 <version>3.2.2</version>
258 </dependency>
259 <dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300260 <groupId>org.apache.poi</groupId>
261 <artifactId>poi</artifactId>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +0300262 <version>3.17</version>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300263 </dependency>
264 <dependency>
265 <groupId>org.apache.httpcomponents</groupId>
266 <artifactId>httpclient</artifactId>
267 <version>4.5.3</version>
268 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400269 </dependencies>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +0300270 <version>3.0.0-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400271</project>