diff options
Diffstat (limited to 'catalog-fe')
-rw-r--r-- | catalog-fe/pom.xml | 12 | ||||
-rw-r--r-- | catalog-fe/src/test/resources/logback-test.xml | 13 |
2 files changed, 15 insertions, 10 deletions
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml index a5ebc4b719..66f718a111 100644 --- a/catalog-fe/pom.xml +++ b/catalog-fe/pom.xml @@ -298,7 +298,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> - <version>2.6</version> <configuration> <archive> <manifest> @@ -318,7 +317,6 @@ <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>${jetty.version}</version> - <!--<version>9.0.6.v20130930</version>--> <configuration> <webApp> <contextPath>/</contextPath> @@ -331,7 +329,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <version>2.7</version> <configuration> <skip>true</skip> </configuration> @@ -340,7 +337,7 @@ <plugin> <groupId>com.jcabi</groupId> <artifactId>jcabi-maven-plugin</artifactId> - <version>${jcabi.plugin.version}</version> + <version>${jcabi.maven.plugin.version}</version> <executions> <execution> <goals> @@ -350,8 +347,8 @@ </executions> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> - <version>3.0.0</version> <executions> <execution> <id>clean.catalog.fe.folder</id> @@ -446,8 +443,8 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> - <version>3.0.2</version> <executions> <execution> <id>copy-resources-fe</id> @@ -478,10 +475,7 @@ <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> - <version>${fabric8.version}</version> - <configuration> - <verbose>true</verbose> <apiVersion>1.23</apiVersion> <registry>nexus3.onap.org:10001</registry> <authConfig> diff --git a/catalog-fe/src/test/resources/logback-test.xml b/catalog-fe/src/test/resources/logback-test.xml index 9fc1778eba..d2b9bff23f 100644 --- a/catalog-fe/src/test/resources/logback-test.xml +++ b/catalog-fe/src/test/resources/logback-test.xml @@ -1,2 +1,13 @@ <!-- only one line, shut up logback ! --> -<configuration />
\ No newline at end of file +<configuration> + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <Pattern> + %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n + </Pattern> + </encoder> + </appender> + <root level="OFF"> + <appender-ref ref="STDOUT" /> + </root> +</configuration>
\ No newline at end of file |