<?xml version="1.0"?> | |
<!--/*- | |
* ============LICENSE_START======================================================= | |
* OSAM Core | |
* ================================================================================ | |
* Copyright (C) 2018 AT&T | |
* ================================================================================ | |
* 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 | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.onap.osam</groupId> | |
<artifactId>onap-enabler</artifactId> | |
<version>0.0.2</version> | |
</parent> | |
<artifactId>onap-enabler-be</artifactId> | |
<packaging>war</packaging> | |
<!-- this should be commented for local debugging --> | |
<!-- <deployenv>local</deployenv> --> | |
<build> | |
<finalName>onap-enabler-be</finalName> | |
<plugins> | |
<!-- License plugin should only run once at the start of the project. | |
For new classes, the header should be added manually by the company which creates it.--> | |
<!--plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>license-maven-plugin</artifactId> | |
<version>1.16</version> | |
<configuration> | |
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> | |
<processStartTag>============LICENSE_START=======================================================</processStartTag> | |
<processEndTag>============LICENSE_END=========================================================</processEndTag> | |
<sectionDelimiter>================================================================================</sectionDelimiter> | |
<licenseName>apache_v2</licenseName> | |
<inceptionYear>2018</inceptionYear> | |
<organizationName>AT&T</organizationName> | |
<projectName>OSAM</projectName> | |
<canUpdateCopyright>true</canUpdateCopyright> | |
<canUpdateDescription>true</canUpdateDescription> | |
<canUpdateLicense>true</canUpdateLicense> | |
<emptyLineAfterHeader>true</emptyLineAfterHeader> | |
<verbose>false</verbose> | |
<includes> | |
<include>**/*.java</include> | |
</includes> | |
</configuration> | |
<executions> | |
<execution> | |
<id>first</id> | |
<goals> | |
<goal>update-file-header</goal> | |
</goals> | |
<phase>process-sources</phase> | |
</execution> | |
</executions> | |
</plugin--> | |
<plugin> | |
<groupId>org.sonatype.plugins</groupId> | |
<artifactId>nexus-staging-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
</plugin> | |
<!-- Generate POJOs from MSO json schema --> | |
<plugin> | |
<groupId>org.jsonschema2pojo</groupId> | |
<artifactId>jsonschema2pojo-maven-plugin</artifactId> | |
<version>0.4.23</version> | |
<configuration> | |
<sourceDirectory>${basedir}/src/main/resources/json/mso</sourceDirectory> | |
<targetPackage>org.onap.osam.domain.mso</targetPackage> | |
<outputDirectory>${project.build.directory}/generated-sources</outputDirectory> | |
</configuration> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<configuration> | |
<skipAssembly>${skipassembly}</skipAssembly> | |
<descriptors> | |
<descriptor>${basedir}/distribution.xml</descriptor> | |
</descriptors> | |
</configuration> | |
<executions> | |
<execution> | |
<id>make-assembly</id> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-war-plugin</artifactId> | |
<configuration> | |
<!-- Build a jar with all the Java classes --> | |
<attachClasses>true</attachClasses> | |
<!-- Do not put any jars in the war --> | |
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-site-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>pl.project13.maven</groupId> | |
<artifactId>git-commit-id-plugin</artifactId> | |
<version>2.2.4</version> | |
<executions> | |
<execution> | |
<id>get-the-git-infos</id> | |
<goals> | |
<goal>revision</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory> | |
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> | |
<dateFormatTimeZone>${user.timezone}</dateFormatTimeZone> | |
<generateGitPropertiesFile>true</generateGitPropertiesFile> | |
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> | |
<includeOnlyProperties> | |
<includeOnlyProperty>^git.commit.id$</includeOnlyProperty> | |
<includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty> | |
<includeOnlyProperty>^git.commit.time$</includeOnlyProperty> | |
</includeOnlyProperties> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>com.opencsv</groupId> | |
<artifactId>opencsv</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.att.eelf</groupId> | |
<artifactId>eelf-core</artifactId> | |
</dependency> | |
<!-- Mapper --> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-annotations</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-databind</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.mchange</groupId> | |
<artifactId>c3p0</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.joshworks.unirest</groupId> | |
<artifactId>unirest-java</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.searchbox</groupId> | |
<artifactId>jest</artifactId> | |
<exclusions> | |
<exclusion> | |
<groupId>commons-logging</groupId> | |
<artifactId>commons-logging</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.json</groupId> | |
<artifactId>json</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.quartz-scheduler</groupId> | |
<artifactId>quartz</artifactId> | |
<exclusions> | |
<!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 --> | |
<exclusion> | |
<groupId>c3p0</groupId> | |
<artifactId>c3p0</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpclient</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpasyncclient</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpmime</artifactId> | |
</dependency> | |
<!-- Helpers --> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>io.vavr</groupId> | |
<artifactId>vavr</artifactId> | |
</dependency> | |
<!-- SDK overlay war --> | |
<dependency> | |
<groupId>org.onap.portal.sdk</groupId> | |
<artifactId>epsdk-app-overlay</artifactId> | |
<type>war</type> | |
</dependency> | |
<dependency> | |
<groupId>org.onap.portal.sdk</groupId> | |
<artifactId>epsdk-app-common</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.onap.portal.sdk</groupId> | |
<artifactId>epsdk-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.onap.portal.sdk</groupId> | |
<artifactId>epsdk-analytics</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.onap.portal.sdk</groupId> | |
<artifactId>epsdk-workflow</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>commons-io</groupId> | |
<artifactId>commons-io</artifactId> | |
</dependency> | |
<!-- bridge to implement commons-logging using slf4j --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jcl-over-slf4j</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context-support</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-core</artifactId> | |
<exclusions> | |
<exclusion> | |
<groupId>commons-logging</groupId> | |
<artifactId>commons-logging</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-tx</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.glassfish.jersey.core</groupId> | |
<artifactId>jersey-client</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.glassfish.jersey.connectors</groupId> | |
<artifactId>jersey-jetty-connector</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.jaxrs</groupId> | |
<artifactId>jackson-jaxrs-json-provider</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>commons-beanutils</groupId> | |
<artifactId>commons-beanutils</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.googlecode.json-simple</groupId> | |
<artifactId>json-simple</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>xml-apis</groupId> | |
<artifactId>xml-apis</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.yaml</groupId> | |
<artifactId>snakeyaml</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.skyscreamer</groupId> | |
<artifactId>jsonassert</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-text</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.togglz</groupId> | |
<artifactId>togglz-spring-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.assertj</groupId> | |
<artifactId>assertj-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger2</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger-ui</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.onap.osam</groupId> | |
<artifactId>osam-common</artifactId> | |
</dependency> | |
<!-- TEST--> | |
<dependency> | |
<groupId>com.xebialabs.restito</groupId> | |
<artifactId>restito</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.testng</groupId> | |
<artifactId>testng</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>net.javacrumbs.json-unit</groupId> | |
<artifactId>json-unit</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.hamcrest</groupId> | |
<artifactId>java-hamcrest</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.bean-matchers</groupId> | |
<artifactId>bean-matchers</artifactId> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |