Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 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> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 4 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 0235021 | 2020-01-30 14:00:55 -0500 | [diff] [blame] | 8 | <version>1.5.2-SNAPSHOT</version> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 9 | </parent> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 10 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 11 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 12 | <artifactId>distribution-root</artifactId> |
Dan Timoney | 0235021 | 2020-01-30 14:00:55 -0500 | [diff] [blame] | 13 | <version>0.7.1-SNAPSHOT</version> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 14 | <packaging>pom</packaging> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 15 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 16 | <name>ccsdk-distribution</name> |
| 17 | <description>Creates distributuon bundles for CCSDK</description> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 18 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 19 | <modules> |
| 20 | <module>platform-logic</module> |
| 21 | <module>dependencies</module> |
| 22 | <module>alpine</module> |
| 23 | <module>ubuntu</module> |
| 24 | <module>opendaylight</module> |
| 25 | <module>odlsli</module> |
| 26 | <module>dgbuilder</module> |
| 27 | <module>dgbuilder-docker</module> |
| 28 | <module>ansible-server</module> |
Ganesh Chandrasekaran | 8ba2cee | 2019-02-12 15:01:25 +0900 | [diff] [blame] | 29 | <module>saltstack-server</module> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 30 | </modules> |
Dan Timoney | 912f98b | 2018-02-27 14:10:22 -0500 | [diff] [blame] | 31 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 32 | <properties> |
| 33 | <application.name>distribution</application.name> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 34 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 35 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
| 36 | <build.number>${maven.build.timestamp}</build.number> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 39 | </properties> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 40 | |
Timoney, Dan (dt5972) | aeff1a0 | 2019-12-11 12:30:43 -0500 | [diff] [blame] | 41 | <profiles> |
| 42 | <profile> |
| 43 | <id>dependency-list</id> |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>com.github.ferstl</groupId> |
| 48 | <artifactId>depgraph-maven-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <phase>validate</phase> |
| 52 | <inherited>false</inherited> |
| 53 | <goals> |
| 54 | <goal>aggregate</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.codehaus.mojo</groupId> |
| 61 | <artifactId>build-helper-maven-plugin</artifactId> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>attach-artifacts</id> |
| 65 | <phase>package</phase> |
| 66 | <inherited>false</inherited> |
| 67 | <goals> |
| 68 | <goal>attach-artifact</goal> |
| 69 | </goals> |
| 70 | <configuration> |
| 71 | <artifacts> |
| 72 | <artifact> |
| 73 | <file>${dependency-list.file}</file> |
| 74 | <type>txt</type> |
| 75 | <classifier>dependencies</classifier> |
| 76 | </artifact> |
| 77 | </artifacts> |
| 78 | </configuration> |
| 79 | </execution> |
| 80 | </executions> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
| 84 | </profile> |
| 85 | </profiles> |
| 86 | |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 87 | </project> |