blob: a20ad4365908c41e76e171296cfe34ecbb391bcf [file] [log] [blame]
Dan Timoneydd89f652017-07-19 15:03:41 -04001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -04003 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04004
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -04005 <groupId>org.onap.ccsdk.parent</groupId>
6 <artifactId>parent</artifactId>
Dan Timoneyaf076a92020-08-06 12:35:38 -04007 <version>2.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04008 <packaging>pom</packaging>
9
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040010 <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
Dan Timoneydd89f652017-07-19 15:03:41 -040011
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040012 <modules>
Dan Timoney7f239072020-06-01 09:28:12 -040013 <module>installed-odl-bom</module>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040014 <module>dependencies-bom</module>
15 <module>dependencies-odl-bom</module>
Dan Timoneyd7746ae2020-03-20 15:36:38 -040016 <module>oparent</module>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040017 <module>standalone</module>
18 <module>odlparent</module>
19 <module>springboot</module>
20 </modules>
Timoney, Dan (dt5972)ab85bb62018-03-05 15:28:15 -050021
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040022 <distributionManagement>
23 <repository>
24 <id>ecomp-releases</id>
25 <url>https://nexus.onap.org/content/repositories/releases</url>
26 </repository>
27 <snapshotRepository>
28 <id>ecomp-snapshots</id>
29 <url>https://nexus.onap.org/content/repositories/snapshots</url>
30 </snapshotRepository>
31 </distributionManagement>
Dan Timoneydd89f652017-07-19 15:03:41 -040032
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040033 <properties>
34 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
35 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
36 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040037 </properties>
38
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050039 <profiles>
40 <profile>
41 <id>dependency-list</id>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>com.github.ferstl</groupId>
46 <artifactId>depgraph-maven-plugin</artifactId>
47 <version>3.3.0</version>
48 <configuration>
49 <graphFormat>text</graphFormat>
50 <outputFileName>direct-dependencies.txt</outputFileName>
51 <outputDirectory>${project.basedir}</outputDirectory>
52 <transitiveExcludes>*</transitiveExcludes>
53 <showVersions>true</showVersions>
Timoney, Dan (dt5972)cc0c96a2019-12-11 10:04:52 -050054 <showGroupIds>true</showGroupIds>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050055 </configuration>
56 <executions>
57 <execution>
58 <phase>validate</phase>
59 <inherited>false</inherited>
60 <goals>
61 <goal>aggregate</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>build-helper-maven-plugin</artifactId>
69 <executions>
70 <execution>
71 <id>attach-artifacts</id>
72 <phase>package</phase>
73 <inherited>false</inherited>
74 <goals>
75 <goal>attach-artifact</goal>
76 </goals>
77 <configuration>
78 <artifacts>
79 <artifact>
80 <file>${project.basedir}/direct-dependencies.txt</file>
81 <type>txt</type>
82 <classifier>dependencies</classifier>
83 </artifact>
84 </artifacts>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </build>
91 </profile>
92 </profiles>
93
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040094 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.codehaus.mojo</groupId>
98 <artifactId>versions-maven-plugin</artifactId>
99 <version>2.5</version>
100 <configuration>
101 <processAllModules>true</processAllModules>
102 </configuration>
103 </plugin>
104 </plugins>
105 </build>
Dan Timoneydd89f652017-07-19 15:03:41 -0400106</project>