diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-07-04 11:03:16 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-07-04 11:03:16 +0200 |
commit | 8607a45287fa0377f02b8f782da5fced3c89ad09 (patch) | |
tree | 1d5d1b056f303913b903b99db24f62d98c1fb839 /pom.xml | |
parent | 17f5e3adc645bd105e00a2b098c06fac319cd8d7 (diff) |
Remove policy dependency
Remove policyEngineUtils and remove run of onap/clamp docker image
during test
Issue-ID: CLAMP-192
Change-Id: I9f5ca488f43c694a9f063ee7daa3a84716ef76b9
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 57 |
1 files changed, 22 insertions, 35 deletions
@@ -415,30 +415,27 @@ <artifactId>grizzly-http-server</artifactId> <groupId>org.glassfish.grizzly</groupId> </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.onap.policy.common</groupId> - <artifactId>ONAP-Logging</artifactId> - <version>1.1.3</version> - <exclusions> <exclusion> - <artifactId>log4j</artifactId> - <groupId>log4j</groupId> + <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> + <artifactId>dmaapClient</artifactId> </exclusion> <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> + <groupId>org.onap.policy.common</groupId> + <artifactId>integrity-monitor</artifactId> </exclusion> <exclusion> - <artifactId>apache-log4j-extras</artifactId> - <groupId>log4j</groupId> + <groupId>org.onap.policy.common</groupId> + <artifactId>integrity-audit</artifactId> + </exclusion> + <exclusion> + <groupId>org.onap.aaf.cadi</groupId> + <artifactId>cadi-aaf</artifactId> </exclusion> </exclusions> </dependency> <dependency> - <groupId>org.onap.policy.engine</groupId> - <artifactId>PolicyEngineUtils</artifactId> + <groupId>org.onap.policy.common</groupId> + <artifactId>ONAP-Logging</artifactId> <version>1.1.3</version> <exclusions> <exclusion> @@ -453,22 +450,6 @@ <artifactId>apache-log4j-extras</artifactId> <groupId>log4j</groupId> </exclusion> - <exclusion> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - </exclusion> - <exclusion> - <groupId>org.mariadb.jdbc</groupId> - <artifactId>mariadb-java-client</artifactId> - </exclusion> - <exclusion> - <groupId>com.att.nsa</groupId> - <artifactId>dmaapClient</artifactId> - </exclusion> - <exclusion> - <groupId>com.h2database</groupId> - <artifactId>h2</artifactId> - </exclusion> </exclusions> </dependency> <dependency> @@ -652,7 +633,7 @@ </resources> <plugins> - <!-- Scan Clamp code and generate the swagger.json file with all the + <!-- Scan Clamp code and generate the swagger.json file with all the APIs --> <plugin> <groupId>com.sebastian-daschner</groupId> @@ -672,8 +653,8 @@ </executions> </plugin> - <!-- Read the swagger.json file and the definition from SwaggerConfig.java; - generate a list of .adoc files containing the APIs info in more structured + <!-- Read the swagger.json file and the definition from SwaggerConfig.java; + generate a list of .adoc files containing the APIs info in more structured way --> <plugin> <groupId>io.github.swagger2markup</groupId> @@ -708,7 +689,7 @@ </executions> </plugin> - <!-- Run the generated asciidoc through Asciidoctor to generate other + <!-- Run the generated asciidoc through Asciidoctor to generate other documentation types, such as PDFs or HTML5 --> <plugin> <groupId>org.asciidoctor</groupId> @@ -885,6 +866,7 @@ </configuration> </execution> </executions> + </plugin> <plugin> <groupId>io.fabric8</groupId> @@ -949,7 +931,11 @@ <image> <name>onap/clamp</name> <alias>onap-clamp</alias> + <run> + <skip>true</skip> + </run> <build> + <imagePullPolicy>never</imagePullPolicy> <cleanup>true</cleanup> <tags> <tag>latest</tag> @@ -967,6 +953,7 @@ </image> </images> </configuration> + <executions> <execution> <id>generate-images</id> |