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> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 7 | <artifactId>oparent</artifactId> |
Dan Timoney | 6fbbadb | 2023-08-16 14:06:36 -0400 | [diff] [blame^] | 8 | <version>2.6.1</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 | edbdf2e | 2023-06-06 06:53:08 -0400 | [diff] [blame] | 13 | <version>1.6.0-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> |
Lasse Kaihlavirta | 110bb11 | 2020-12-15 12:00:06 +0200 | [diff] [blame] | 17 | <description>Creates distribution 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 | 6fbbadb | 2023-08-16 14:06:36 -0400 | [diff] [blame^] | 34 | <ccsdk.sli.version>1.7.1</ccsdk.sli.version> |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 35 | <ccsdk.project.version>${project.version}</ccsdk.project.version> |
| 36 | <ccsdk.distribution.version>${project.version}</ccsdk.distribution.version> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 37 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 38 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 39 | <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 40 | <build.number>${maven.build.timestamp}</build.number> |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 41 | |
| 42 | <docker.skip.push>false</docker.skip.push> |
| 43 | <docker.verbose>true</docker.verbose> |
| 44 | |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 46 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 47 | </properties> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 48 | |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 49 | <build> |
| 50 | <plugins> |
| 51 | <!-- Override enforcer rule to allow compile --> |
| 52 | <!-- with snapshot version of ccsdk libs --> |
Singal, Kapil (ks220y) | 0bb081c | 2021-03-21 20:43:03 -0400 | [diff] [blame] | 53 | |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-enforcer-plugin</artifactId> |
| 57 | <version>3.0.0-M2</version> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <id>enforce-no-snapshots</id> |
| 61 | <goals> |
| 62 | <goal>enforce</goal> |
| 63 | </goals> |
| 64 | <configuration> |
| 65 | <rules> |
| 66 | <requireReleaseDeps> |
| 67 | <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot> |
| 68 | <onlyWhenRelease>true</onlyWhenRelease> |
| 69 | <excludes> |
| 70 | <exclude>org.onap.ccsdk.*:*</exclude> |
| 71 | </excludes> |
| 72 | <level>WARN</level> |
| 73 | </requireReleaseDeps> |
| 74 | </rules> |
| 75 | </configuration> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
Timoney, Dan (dt5972) | aeff1a0 | 2019-12-11 12:30:43 -0500 | [diff] [blame] | 81 | <profiles> |
| 82 | <profile> |
| 83 | <id>dependency-list</id> |
| 84 | <build> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>com.github.ferstl</groupId> |
| 88 | <artifactId>depgraph-maven-plugin</artifactId> |
| 89 | <executions> |
| 90 | <execution> |
| 91 | <phase>validate</phase> |
| 92 | <inherited>false</inherited> |
| 93 | <goals> |
| 94 | <goal>aggregate</goal> |
| 95 | </goals> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>build-helper-maven-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>attach-artifacts</id> |
| 105 | <phase>package</phase> |
| 106 | <inherited>false</inherited> |
| 107 | <goals> |
| 108 | <goal>attach-artifact</goal> |
| 109 | </goals> |
| 110 | <configuration> |
| 111 | <artifacts> |
| 112 | <artifact> |
| 113 | <file>${dependency-list.file}</file> |
| 114 | <type>txt</type> |
| 115 | <classifier>dependencies</classifier> |
| 116 | </artifact> |
| 117 | </artifacts> |
| 118 | </configuration> |
| 119 | </execution> |
| 120 | </executions> |
| 121 | </plugin> |
| 122 | </plugins> |
| 123 | </build> |
| 124 | </profile> |
| 125 | </profiles> |
Dan Timoney | 73be211 | 2017-08-09 13:37:32 -0400 | [diff] [blame] | 126 | </project> |