diff options
author | waqas.ikram <waqas.ikram@est.tech> | 2023-06-16 13:05:04 +0100 |
---|---|---|
committer | Waqas Ikram <waqas.ikram@est.tech> | 2023-06-20 09:40:08 +0000 |
commit | cb0256d46fa8fd75f54482917ec1cd4aba02fb55 (patch) | |
tree | 74f8ac08831951889e1b2269a3a70d80a18276ec /cps-ncmp-rest-stub/pom.xml | |
parent | a47d9766d027cb0ffcc92c3e0c401a46bc2e8ab8 (diff) |
Refactored code to enable its utilization in Junit
tests for the client
Change-Id: I847ae0f48444af907039bfddb9879581003c0f35
Issue-ID: CPS-1751
Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
Diffstat (limited to 'cps-ncmp-rest-stub/pom.xml')
-rw-r--r-- | cps-ncmp-rest-stub/pom.xml | 158 |
1 files changed, 10 insertions, 148 deletions
diff --git a/cps-ncmp-rest-stub/pom.xml b/cps-ncmp-rest-stub/pom.xml index 0a6684fc0b..7fa44e6133 100644 --- a/cps-ncmp-rest-stub/pom.xml +++ b/cps-ncmp-rest-stub/pom.xml @@ -6,22 +6,18 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - SPDX-License-Identifier: Apache-2.0 ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.cps</groupId> @@ -31,149 +27,15 @@ </parent> <artifactId>cps-ncmp-rest-stub</artifactId> + <packaging>pom</packaging> + <properties> - <app>org.onap.cps.ncmp.rest.stub.Application</app> - <java.version>11</java.version> - <jacoco.reportDirectory.aggregate>${project.reporting.outputDirectory}/jacoco-aggregate</jacoco.reportDirectory.aggregate> - <sonar.coverage.jacoco.xmlReportPaths> - ../jacoco-report/target/site/jacoco-aggregate/jacoco.xml - </sonar.coverage.jacoco.xmlReportPaths> - <groovy.version>3.0.8</groovy.version> - <nexusproxy>https://nexus.onap.org</nexusproxy> - <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> - <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <parent.directory>${project.parent.basedir}/..</parent.directory> <sonar.skip>true</sonar.skip> - <mapstruct.version>1.4.2.Final</mapstruct.version> </properties> - <dependencies> - <dependency> - <groupId>io.swagger.core.v3</groupId> - <artifactId>swagger-annotations</artifactId> - <version>2.1.4</version> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-tomcat</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-validation</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-jetty</artifactId> - </dependency> - <dependency> - <groupId>org.mapstruct</groupId> - <artifactId>mapstruct</artifactId> - <version>${mapstruct.version}</version> - </dependency> - <dependency> - <groupId>org.mapstruct</groupId> - <artifactId>mapstruct-processor</artifactId> - <version>${mapstruct.version}</version> - </dependency> - <!-- T E S T D E P E N D E N C I E S --> - <dependency> - <groupId>org.projectlombok</groupId> - <artifactId>lombok</artifactId> - </dependency> - <dependency> - <!-- The SpotBugs Maven plugin uses SLF4J 1.8 beta 2 --> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-simple</artifactId> - <version>1.8.0-beta4</version> - </dependency> - <dependency> - <groupId>cglib</groupId> - <artifactId>cglib-nodep</artifactId> - <scope>test</scope> - <version>3.1</version> - </dependency> - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - </dependency> - <dependency> - <groupId>org.onap.cps</groupId> - <artifactId>cps-ncmp-rest</artifactId> - <optional>true</optional> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- Swagger code generation. --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.3.2</version> - <configuration> - <source>${java.version}</source> - <target>${java.version}</target> - </configuration> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <dependencies> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <version>1.2.7.RELEASE</version> - </dependency> - </dependencies> - <configuration> - <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> - <createDependencyReducedPom>true</createDependencyReducedPom> - <filters> - <filter> - <artifact>*:*</artifact> - <excludes> - <exclude>org/onap/cps/ncmp/rest/controller/**</exclude> - </excludes> - </filter> - </filters> - </configuration> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - <configuration> - <transformers> - <transformer - implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> - <resource>META-INF/spring.handlers</resource> - </transformer> - <transformer - implementation="org.springframework.boot.maven.PropertiesMergingResourceTransformer"> - <resource>META-INF/spring.factories</resource> - </transformer> - <transformer - implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> - <resource>META-INF/spring.schemas</resource> - </transformer> - <transformer - implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - <transformer - implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> - <mainClass>org/onap/cps/ncmp/rest/stub/Application</mainClass> - </transformer> - </transformers> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> + <modules> + <module>cps-ncmp-rest-stub-service</module> + <module>cps-ncmp-rest-stub-app</module> + </modules> +</project>
\ No newline at end of file |