cpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>cpa</artifactId> <version>3.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2016 Ordina 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>cpa</artifactId> <packaging>jar</packaging> <version>3.0.0</version> <name>ebMS Admin Console - CPA Plugin</name> <description>CPA Plugin for the ebMS Admin Console</description> <url>https://gitlab.com/java-ebms-adapter/ebms-admin-console/ebms-admin-console-cpa-plugin/</url> <issueManagement> <system>Tickets</system> <url>https://gitlab.com/java-ebms-adapter/ebms-admin-console/ebms-admin-console-cpa-plugin/issues/</url> </issueManagement> <organization> <name>Ordina</name> <url>www.ordina.nl</url> </organization> <developers> <developer> <id>eluinstra</id> <name>Edwin Luinstra</name> <email>edwin.luinstra@ordina.nl</email> <organization>Ordina</organization> <organizationUrl>http://www.ordina.nl</organizationUrl> <roles> <role>Architect</role> <role>Developer</role> </roles> <timezone>1</timezone> </developer> </developers> <scm> <connection>scm:git:git@gitlab.com:java-ebms-adapter/ebms-admin-console/ebms-admin-console-cpa-plugin.git</connection> <developerConnection>scm:git:git@gitlab.com:java-ebms-adapter/ebms-admin-console/ebms-admin-console-cpa-plugin.git</developerConnection> <url>https://gitlab.com/java-ebms-adapter/ebms-admin-console/ebms-admin-console-cpa-plugin/</url> </scm> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>OSSRH snapshot repository</name> <url>${snapshot.repo.url}</url> </snapshotRepository> <repository> <id>ossrh</id> <name>OSSRH release repository</name> <url>${release.repo.url}</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <jdk.version>1.7</jdk.version> <snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url> <release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> </properties> <dependencies> <dependency> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>ebms-admin</artifactId> <version>2.15.2-mic</version> <scope>provided</scope> </dependency> </dependencies> <repositories> <repository> <id>central</id> <name>Maven Central</name> <url>https://repo1.maven.org/maven2/</url> <layout>default</layout> </repository> <repository> <id>Apache Nexus</id> <url>https://repository.apache.org/content/repositories/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> </resource> <resource> <filtering>false</filtering> <directory>src/main/java</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <filtering>false</filtering> <directory>src/test/resources</directory> </testResource> <testResource> <filtering>false</filtering> <directory>src/test/java</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.5</version> <configuration> <strictCheck>true</strictCheck> <header>${project.basedir}/resources/license/header.txt</header> <failIfMissing>true</failIfMissing> <aggregate>true</aggregate> <includes> <include>pom.xml</include> <include>src/main/java/**/*.java</include> <include>src/main/resources/**/*</include> </includes> <excludes> <exclude>src/main/resources/log4j.*</exclude> <exclude>src/main/resources/**/*.css</exclude> <exclude>src/main/resources/**/*.html</exclude> <exclude>src/main/resources/**/*.wsdl</exclude> </excludes> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <encoding>UTF-8</encoding> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> </plugins> </build> <profiles> <!-- Activate using the 'release' property: mvn clean install -Prelease --> <profile> <id>release</id> <activation> <property> <name>release</name> </property> </activation> <build> <plugins> <!-- Publish the release to Maven Central --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>build-sources-jar</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>create-javadoc-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${jdk.version}</source> <doclint>none</doclint> <sourcepath>src/main/java</sourcepath> <failOnError>false</failOnError> <fixClassComment>true</fixClassComment> <fixFieldComment>true</fixFieldComment> <fixMethodComment>true</fixMethodComment> </configuration> </plugin> <!-- PGP sign the artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>pgp-sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>