diff options
Diffstat (limited to 'dcae_dmaapbc_client/pom.xml')
-rw-r--r-- | dcae_dmaapbc_client/pom.xml | 199 |
1 files changed, 199 insertions, 0 deletions
diff --git a/dcae_dmaapbc_client/pom.xml b/dcae_dmaapbc_client/pom.xml new file mode 100644 index 0000000..d6c03b5 --- /dev/null +++ b/dcae_dmaapbc_client/pom.xml @@ -0,0 +1,199 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <!-- repository key for AT&T maven central --> + <groupId>org.openecomp.ui.dmaapbc</groupId> + <artifactId>dmaap-bc-client</artifactId> + <version>1.0.0</version> + <name>DCAE DMaaP Bus Controller REST Client</name> + <description>Java client for using the DMaaP Bus Controller API via REST.</description> + <scm> + <url>https://gitlab/projects/ST_DBPA/repos/dcae_dmaapbc_client/browse</url> + <developerConnection>scm:git:ssh://git@gitlab/st_dbpa/dcae_dmaapbc_client.git</developerConnection> + </scm> + + <properties> + <encoding>UTF-8</encoding> + <skiptests>true</skiptests> + </properties> + + <repositories> + <repository> + <!-- Snapshots repository has ECOMP snapshot artifacts --> + <id>openecomp-snapshots</id> + <name>Nexus Maven Central - Snapshots</name> + <url>https://ecomp-nexus:8443/repository/maven-snapshots/</url> + </repository> + <repository> + <!-- Releases repository has ECOMP release artifacts --> + <id>openecomp</id> + <name>Nexus Maven Central - Releases</name> + <url>https://ecomp-nexus:8443/repository/maven-releases/</url> + </repository> + </repositories> + + <profiles> + <!-- disable doclint, a new feature in Java 8, when generating javadoc --> + <profile> + <id>doclint-java8-disable</id> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.4</version> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-plugin</artifactId> + <version>1.8.1</version> + <configuration> + <connectionType>developerConnection</connectionType> + <scmVersionType>branch</scmVersionType> + <scmVersion>master</scmVersion> + </configuration> + </plugin> + <!-- Compile to Java 1.8 class output format --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <!-- do not distribute the logback.xml file --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.0.2</version> + <configuration> + <excludes> + <exclude>**/logback.xml</exclude> + </excludes> + </configuration> + </plugin> + <!-- Generate javadoc jar; see profile for Java 8 --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.3</version> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- Generate source jar --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.19.1</version> + <configuration> + <skipTests>${skiptests}</skipTests> + </configuration> + </plugin> + <!-- older versions are very buggy --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.5.3</version> + </plugin> + </plugins> + </build> + + <dependencies> + <!-- model classes --> + <dependency> + <groupId>org.openecomp.ui.dmaapbc</groupId> + <artifactId>dmaap-bc-model</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>2.6.3</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.6.3</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.5</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.7.21</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <version>1.7.21</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + </dependency> + </dependencies> + + <distributionManagement> + <!-- Publish jars to the RackSpace Maven Central Repository. Host name + is INCOMPLETE; /etc/hosts must resolve to 162.242.254.138. The id tags below + must match a .m2/settings.xml/servers/server/id --> + <snapshotRepository> + <!-- Snapshots repository has ECOMP snapshot artifacts --> + <id>nexus-snapshots</id> + <name>OpenECOMP Nexus Maven Central - Snapshots</name> + <url>https://ecomp-nexus:8443/repository/maven-snapshots/</url> + </snapshotRepository> + <repository> + <!-- Releases repository has ECOMP release artifacts --> + <id>nexus</id> + <name>OpenECOMP Nexus Maven Central - Releases</name> + <url>https://ecomp-nexus:8443/repository/maven-releases/</url> + </repository> + </distributionManagement> + +</project> |