blob: e34fc4d1be6389e89af28d781733e597e17d580d [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>
Sonsino, Ofir (os0695)7059a9c2018-09-05 16:06:16 +030073 <module>vid-webpack-master</module>
jimmydot3982f4f2017-05-07 14:58:24 -040074 <module>epsdk-app-onap</module>
75 <module>deliveries</module>
76 </modules>
77 </profile>
78 </profiles>
79
80 <properties>
81 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
82 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +030083 <build.version>3.0.0-SNAPSHOT</build.version>
jimmydot3982f4f2017-05-07 14:58:24 -040084 <nexusproxy>https://nexus.onap.org</nexusproxy>
85 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
86 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
87 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020088 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040089 </properties>
90
91 <build>
92 <plugins>
Ofir Sonsinoc52c3b42017-12-10 13:58:42 +020093 <plugin>
94 <groupId>org.codehaus.mojo</groupId>
95 <artifactId>versions-maven-plugin</artifactId>
96 <version>1.3.1</version>
97 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -040098 <plugin>
99 <groupId>org.sonatype.plugins</groupId>
100 <artifactId>nexus-staging-maven-plugin</artifactId>
101 <version>1.6.7</version>
102 <extensions>true</extensions>
103 <configuration>
104 <nexusUrl>${nexusproxy}</nexusUrl>
105 <stagingProfileId>176c31dfe190a</stagingProfileId>
106 <serverId>ecomp-staging</serverId>
107 </configuration>
108 </plugin>
109
jimmydotf88fada2017-05-07 19:42:59 -0400110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-site-plugin</artifactId>
113 <version>3.6</version>
114 <dependencies>
115 <dependency>
116 <groupId>org.apache.maven.wagon</groupId>
117 <artifactId>wagon-webdav-jackrabbit</artifactId>
118 <version>2.10</version>
119 </dependency>
120 </dependencies>
121 </plugin>
jimmydotf88fada2017-05-07 19:42:59 -0400122 <plugin>
123 <groupId>org.sonatype.plugins</groupId>
124 <artifactId>nexus-staging-maven-plugin</artifactId>
125 <version>1.6.7</version>
126 <extensions>true</extensions>
127 <configuration>
128 <nexusUrl>${nexusproxy}</nexusUrl>
129 <stagingProfileId>176c31dfe190a</stagingProfileId>
130 <serverId>ecomp-staging</serverId>
131 </configuration>
132 </plugin>
133
jimmydot3982f4f2017-05-07 14:58:24 -0400134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-deploy-plugin</artifactId>
137 <version>2.8</version>
138 </plugin>
139
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-surefire-plugin</artifactId>
143 <version>2.17</version>
144 </plugin>
145
146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-compiler-plugin</artifactId>
149 <version>2.3.2</version>
150
151 <configuration>
152 <debug>true</debug>
153 <compilerArgument>-Xlint</compilerArgument>
154 <verbose>true</verbose>
155 <showDeprecation>true</showDeprecation>
156 <showWarnings>true</showWarnings>
157 <source>1.8</source>
158 <target>1.8</target>
159 </configuration>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-site-plugin</artifactId>
164 <version>3.6</version>
165 <dependencies>
166 <dependency>
167 <groupId>org.apache.maven.wagon</groupId>
168 <artifactId>wagon-webdav-jackrabbit</artifactId>
169 <version>2.10</version>
170 </dependency>
171 </dependencies>
172 </plugin>
173 <plugin>
Ofir Sonsino2f20b002017-12-11 11:21:00 +0200174 <groupId>org.sonarsource.scanner.maven</groupId>
175 <artifactId>sonar-maven-plugin</artifactId>
176 <version>3.3.0.603</version>
177 </plugin>
178 <plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400179 <groupId>com.blackducksoftware.integration</groupId>
180 <artifactId>hub-maven-plugin</artifactId>
181 <version>1.4.0</version>
182 <inherited>false</inherited>
183 <configuration>
184 <hubProjectName>${project.name}</hubProjectName>
185 <outputDirectory>${project.basedir}</outputDirectory>
186 </configuration>
187 <executions>
188 <execution>
189 <id>create-bdio-file</id>
190 <phase>package</phase>
191 <goals>
192 <goal>createHubOutput</goal>
193 </goals>
194 </execution>
195 </executions>
196 </plugin>
197 </plugins>
198 </build>
199
200 <!-- added for javadoc -->
201 <pluginRepositories>
202 <!-- Black Duck plugin dependencies -->
203 <pluginRepository>
204 <id>JCenter</id>
205 <name>JCenter Repository</name>
206 <url>http://jcenter.bintray.com</url>
207 </pluginRepository>
208
209 <pluginRepository>
210 <id>Restlet</id>
211 <name>Restlet Repository</name>
212 <url>http://maven.restlet.com</url>
213 </pluginRepository>
214 </pluginRepositories>
215 <reporting>
216 <plugins>
217
218 <plugin>
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-javadoc-plugin</artifactId>
221 <version>2.10.4</version>
222 <configuration>
223 <failOnError>false</failOnError>
224 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
225 <docletArtifact>
226 <groupId>org.umlgraph</groupId>
227 <artifactId>umlgraph</artifactId>
228 <version>5.6</version>
229 </docletArtifact>
230 <additionalparam>-views</additionalparam>
231 <useStandardDocletOptions>true</useStandardDocletOptions>
232 </configuration>
233 </plugin>
234 </plugins>
235 </reporting>
236 <dependencies>
237 <dependency>
238 <groupId>junit</groupId>
239 <artifactId>junit</artifactId>
240 <version>4.11</version>
241 <scope>test</scope>
242 </dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300243
244 <!--Overide versions for latest security fixes-->
245 <dependency>
246 <groupId>ch.qos.logback</groupId>
247 <artifactId>logback-core</artifactId>
248 <version>1.2.3</version>
249 </dependency>
250 <dependency>
251 <groupId>ch.qos.logback</groupId>
252 <artifactId>logback-classic</artifactId>
253 <version>1.2.3</version>
254 </dependency>
255 <dependency>
256 <groupId>commons-collections</groupId>
257 <artifactId>commons-collections</artifactId>
258 <version>3.2.2</version>
259 </dependency>
260 <dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300261 <groupId>org.apache.poi</groupId>
262 <artifactId>poi</artifactId>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +0300263 <version>3.17</version>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300264 </dependency>
265 <dependency>
266 <groupId>org.apache.httpcomponents</groupId>
267 <artifactId>httpclient</artifactId>
268 <version>4.5.3</version>
269 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400270 </dependencies>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +0300271 <version>3.0.0-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400272</project>