diff options
-rw-r--r-- | asdc-tests/pom.xml | 4 | ||||
-rw-r--r-- | catalog-be/pom.xml | 2 | ||||
-rw-r--r-- | catalog-fe/pom.xml | 2 | ||||
-rw-r--r-- | openecomp-ui/pom.xml | 46 | ||||
-rw-r--r-- | pom.xml | 9 |
5 files changed, 53 insertions, 10 deletions
diff --git a/asdc-tests/pom.xml b/asdc-tests/pom.xml index ce346ae901..cc41ca9019 100644 --- a/asdc-tests/pom.xml +++ b/asdc-tests/pom.xml @@ -251,14 +251,14 @@ <dependency> <groupId>org.openecomp.sdc</groupId> <artifactId>sdc-distribution-client</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openecomp.ecompsdkos</groupId> <artifactId>ecompFW</artifactId> - <version>${ecomp.version}</version> + <version>1.0.0</version> <scope>compile</scope> <exclusions> <exclusion> diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index ddf421a046..a13c9bb909 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -436,7 +436,7 @@ <dependency> <groupId>org.openecomp.ecompsdkos</groupId> <artifactId>ecompFW</artifactId> - <version>${ecomp.version}</version> + <version>1.0.0</version> <scope>compile</scope> <exclusions> <exclusion> diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml index cb41d46b6c..b12c32b020 100644 --- a/catalog-fe/pom.xml +++ b/catalog-fe/pom.xml @@ -222,7 +222,7 @@ <dependency> <groupId>org.openecomp.ecompsdkos</groupId> <artifactId>ecompFW</artifactId> - <version>${ecomp.version}</version> + <version>1.0.0</version> <scope>compile</scope> <exclusions> <exclusion> diff --git a/openecomp-ui/pom.xml b/openecomp-ui/pom.xml index ee6d32dd9a..579e1f79eb 100644 --- a/openecomp-ui/pom.xml +++ b/openecomp-ui/pom.xml @@ -11,8 +11,8 @@ <groupId>org.openecomp.sdc.onboarding</groupId> <artifactId>onboarding-fe</artifactId> <name>onboarding-ui-war</name> + <packaging>pom</packaging> - <packaging>war</packaging> <build> <plugins> @@ -52,11 +52,53 @@ </plugin> <plugin> + <groupId>com.coderplus.maven.plugins</groupId> + <artifactId>copy-rename-maven-plugin</artifactId> + <version>1.0</version> + <executions> + <execution> + <id>copy-file</id> + <phase>compile</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <sourceFile>${project.basedir}/dist/onboarding.war</sourceFile> + <destinationFile>${project.basedir}/target/onboarding-fe-${project.version}.war</destinationFile> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>attach-artifacts</id> + <phase>compile</phase> + <goals> + <goal>attach-artifact</goal> + </goals> + <configuration> + <artifacts> + <artifact> + <file>${project.basedir}/target/onboarding-fe-${project.version}.war</file> + <type>war</type> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + +<!-- <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webXml>webapp-onboarding\WEB-INF\web.xml</webXml> </configuration> - </plugin> + </plugin> --> </plugins> </build> @@ -169,14 +169,15 @@ <cassandra.driver.version>3.0.0</cassandra.driver.version> <!-- Sonar properties --> - <!-- <sonar.login>sonaruser</sonar.login> - <sonar.password>us7USi0Htu93nFY91DPuQLFo6ebKcKXv</sonar.password> - <sonar.host.url>http://104.239.145.8:9000</sonar.host.url> --> <sonar.sourceEncoding>${project.build.sourceEncoding}</sonar.sourceEncoding> <sonar.skipDesign>true</sonar.skipDesign> <sonar.projectBaseDir>${project.basedir}</sonar.projectBaseDir> <sonar.sources>.</sonar.sources> - <sonar.exclusions>**/scripts/**/*</sonar.exclusions> + <sonar.exclusions>**/scripts/**/*, + openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js, + openecomp-ui/src/nfvo-utils/json/JSONPointer.js, + openecomp-ui/src/sdc-app/AppStore.js, + openecomp-ui/src/sdc-app/config/Configuration.js</sonar.exclusions> <sonar.test.exclusions>**/test/**/*,**/tests/**/*</sonar.test.exclusions> <sonar.inclusions>app/**/*.js,server-mock/**/*.js,src/**/*.js,src/main/**/*.java</sonar.inclusions> |