| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright © 2019 European Support Limited |
| ~ |
| ~ 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. |
| --> |
| |
| <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 http://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.2.0</version> |
| <relativePath/> |
| </parent> |
| |
| <groupId>org.onap.sdc.sdc-be-common</groupId> |
| <artifactId>sdc-be-common-parent</artifactId> |
| <name>sdc-be-common</name> |
| <version>1.7.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <maven.compiler.source>1.8</maven.compiler.source> |
| <maven.compiler.target>1.8</maven.compiler.target> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| <mockito.version>2.26.0</mockito.version> |
| <junit-jupiter.version>5.7.2</junit-jupiter.version> |
| <logging-slf4j.version>1.5.0</logging-slf4j.version> |
| <maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version> |
| <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> |
| <snapshots.path>snapshots</snapshots.path> |
| <releases.path>releases</releases.path> |
| <sitePath>/content/sites/site/org/onap/sdc/sdc-be-common/${project.version}</sitePath> |
| <nexus.proxy>https://nexus.onap.org</nexus.proxy> |
| <docker.username>docker</docker.username> |
| <docker.password>docker</docker.password> |
| |
| <!-- Sonar properties --> |
| <sonar.language>java</sonar.language> |
| <sonar.coverage.jacoco.xmlReportPaths> |
| ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml |
| </sonar.coverage.jacoco.xmlReportPaths> |
| <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.test.exclusions>**/test/**/*,**/tests/**/*</sonar.test.exclusions> |
| <sonar.inclusions>app/**/*.js,server-mock/**/*.js,src/**/*.js,src/main/**/*.java</sonar.inclusions> |
| <sonar.branch>${project.version}</sonar.branch> |
| |
| <checkstyle.skip>true</checkstyle.skip> |
| </properties> |
| |
| <modules> |
| <module>session-lib</module> |
| <module>zusammen-lib</module> |
| <module>versioning-lib</module> |
| <module>security-util-lib</module> |
| </modules> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <version>1.18.8</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit</groupId> |
| <artifactId>junit-bom</artifactId> |
| <version>${junit-jupiter.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <scope>test</scope> |
| <version>${junit-jupiter.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockito.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-dependencies</artifactId> |
| <version>2.1.18.RELEASE</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.onap.logging-analytics</groupId> |
| <artifactId>logging-slf4j</artifactId> |
| <version>${logging-slf4j.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-module-junit4</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.yaml</groupId> |
| <artifactId>snakeyaml</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>${maven-surefire-plugin.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-failsafe-plugin</artifactId> |
| <version>${maven-failsafe-plugin.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${maven-checkstyle-plugin.version}</version> |
| <configuration> |
| <skip>${checkstyle.skip}</skip> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.5.1</version> |
| <executions> |
| <execution> |
| <id>compile</id> |
| <phase>compile</phase> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>testCompile</id> |
| <phase>test-compile</phase> |
| <goals> |
| <goal>testCompile</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <repositories> |
| <repository> |
| <id>central</id> |
| <name>Official Maven repository</name> |
| <url>http://repo2.maven.org/maven2/</url> |
| </repository> |
| <repository> |
| <id>ecomp-releases</id> |
| <name>Release Repository</name> |
| <url>${nexus.proxy}/content/repositories/releases/</url> |
| </repository> |
| <repository> |
| <id>ecomp-snapshots</id> |
| <name>Snapshots Repository</name> |
| <url>${nexus.proxy}/content/repositories/snapshots/</url> |
| </repository> |
| </repositories> |
| |
| <distributionManagement> |
| <repository> |
| <id>ecomp-releases</id> |
| <name>Release Repository</name> |
| <url>${nexus.proxy}/content/repositories/${releases.path}/</url> |
| </repository> |
| <snapshotRepository> |
| <id>ecomp-snapshots</id> |
| <name>Snapshot Repository</name> |
| <url>${nexus.proxy}/content/repositories/${snapshots.path}/</url> |
| </snapshotRepository> |
| <site> |
| <id>ecomp-site</id> |
| <url>dav:${nexus.proxy}${sitePath}</url> |
| </site> |
| </distributionManagement> |
| |
| </project> |