Roll to initial Honolulu release version
[ccsdk/parent.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <groupId>org.onap.ccsdk.parent</groupId>
6     <artifactId>parent</artifactId>
7     <version>2.1.0-SNAPSHOT</version>
8     <packaging>pom</packaging>
9
10     <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
11
12     <modules>
13         <module>installed-odl-bom</module>
14         <module>dependencies-bom</module>
15         <module>dependencies-odl-bom</module>
16         <module>oparent</module>
17         <module>standalone</module>
18         <module>odlparent</module>
19         <module>springboot</module>
20     </modules>
21
22     <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>
32
33     <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>
37     </properties>
38
39     <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>
54                             <showGroupIds>true</showGroupIds>
55                         </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
94     <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>
106 </project>