diff options
author | Dan Timoney <dtimoney@att.com> | 2021-01-25 14:47:00 -0500 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-02-05 23:55:15 +0000 |
commit | 1f4e903277d4f94db0bed99245026b82fa36fba3 (patch) | |
tree | f426216288db21cc1b1c407eb4eec7a90e7f0145 /pom.xml | |
parent | ef87ec9bc0c87220cfa57a5a72c628e2173b68ad (diff) |
Update to ODL Aluminum SR1
Update to OpenDaylight Aluminum SR1 release
Change-Id: Ifcd172fec903dd2fb681b6998d45eac690066d10
Issue-ID: CCSDK-3107
Signed-off-by: Dan Timoney <dtimoney@att.com>
Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com>
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 36 |
1 files changed, 34 insertions, 2 deletions
@@ -4,8 +4,8 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>odlparent-lite</artifactId> - <version>2.1.0</version> + <artifactId>oparent</artifactId> + <version>2.1.1-SNAPSHOT</version> </parent> <groupId>org.onap.ccsdk.distribution</groupId> @@ -45,6 +45,38 @@ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> + <build> + <plugins> + <!-- Override enforcer rule to allow compile --> + <!-- with snapshot version of ccsdk libs --> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>3.0.0-M2</version> + <executions> + <execution> + <id>enforce-no-snapshots</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <requireReleaseDeps> + <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot> + <onlyWhenRelease>true</onlyWhenRelease> + <excludes> + <exclude>org.onap.ccsdk.*:*</exclude> + </excludes> + <level>WARN</level> + </requireReleaseDeps> + </rules> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> <profiles> <profile> <id>dependency-list</id> |