diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 29 |
1 files changed, 26 insertions, 3 deletions
@@ -47,6 +47,29 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-no-snapshots</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <requireReleaseDeps> + <message>No Snapshots Allowed!</message> + <excludes> + <exclude>org.onap.dmaap.messagerouter.msgrtr:msgrtr</exclude> + </excludes> + </requireReleaseDeps> + </rules> + <fail>true</fail> + </configuration> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> @@ -262,7 +285,7 @@ <testRouteOffer>workstation</testRouteOffer> <testEnv>DEV</testEnv> <!-- <dmaapImg>${project.version}</dmaapImg> --> - <dmaapImg>1.1.7</dmaapImg> + <dmaapImg>1.1.8</dmaapImg> <camel.version>2.21.1</camel.version> <sitePath>/content/sites/site/org/onap/dmaap/messagerouter/messageservice/${project.artifactId}/${project.version}</sitePath> <skip.docker.build>true</skip.docker.build> @@ -457,7 +480,7 @@ <dependency> <groupId>org.onap.dmaap.messagerouter.msgrtr</groupId> <artifactId>msgrtr</artifactId> - <version>1.1.11</version> + <version>1.1.12-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> @@ -605,7 +628,7 @@ <dependency> <groupId>org.onap.aaf.authz</groupId> <artifactId>aaf-cadi-aaf</artifactId> - <version>2.1.2</version> + <version>2.1.5</version> </dependency> <dependency> <groupId>backport-util-concurrent</groupId> |