diff options
author | Pawel Kasperkiewicz <pawel.kasperkiewicz@nokia.com> | 2020-02-04 14:21:29 +0100 |
---|---|---|
committer | Pawel <pawel.kasperkiewicz@nokia.com> | 2020-02-04 14:22:10 +0100 |
commit | 50f42bd19fe752717823ba9ef1ffe932c47d05f4 (patch) | |
tree | 03361fe4ef5fb104ed2721a1630f8b706d4b1584 /certService/pom.xml | |
parent | 26d0f939632ed185e42f092beab94f525f99267d (diff) |
Create project structure
Issue-ID: AAF-995
Signed-off-by: Pawel Kasperkiewicz <pawel.kasperkiewicz@nokia.com>
Change-Id: Ib9e2314e96e3d3e1bdae8fccbab3f8047cec1329
Diffstat (limited to 'certService/pom.xml')
-rw-r--r-- | certService/pom.xml | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/certService/pom.xml b/certService/pom.xml new file mode 100644 index 00000000..b5410e5c --- /dev/null +++ b/certService/pom.xml @@ -0,0 +1,144 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ================================================================================ + Copyright (c) 2020 Nokia. All rights reserved. + ================================================================================ + 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. + ============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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>3.0.0</version> + <relativePath/> + </parent> + <groupId>org.onap.aaf</groupId> + <artifactId>cert-service</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>cert-service</name> + <description>Certification service</description> + <packaging>jar</packaging> + + <properties> + <java.version>11</java.version> + <assertj-core.version>3.11.1</assertj-core.version> + <mockito-core.version>3.2.4</mockito-core.version> + <spring-core.version>5.2.3.RELEASE</spring-core.version> + <spring-boot-starter.version>2.2.4.RELEASE</spring-boot-starter.version> + <maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version> + <maven-surefire-plugin.version>3.0.0-M1</maven-surefire-plugin.version> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <!-- Import dependency management from Spring Boot --> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-dependencies</artifactId> + <version>${spring-boot-starter.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>${spring-boot-starter.version}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <version>${spring-boot-starter.version}</version> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>${mockito-core.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <version>${assertj-core.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>${spring-boot-starter.version}</version> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${maven-javadoc-plugin.version}</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven-surefire-plugin.version}</version> + </plugin> + + </plugins> + </pluginManagement> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <quiet>true</quiet> + <verbose>false</verbose> + <useStandardDocletOptions>false</useStandardDocletOptions> + </configuration> + <executions> + <execution> + <id>aggregate</id> + <phase>site</phase> + <goals> + <goal>aggregate</goal> + </goals> + </execution> + <execution> + <id>attach-javadoc</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> |