This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up POM; correct release artifact in Travis config
- Loading branch information
Showing
1 changed file
with
169 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,168 +17,172 @@ | |
--> | ||
<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.github.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://sourceforge.net/projects/javaebmsadmin/cpaplugin</url> | ||
|
||
<issueManagement> | ||
<system>Tickets</system> | ||
<url>https://sourceforge.net/p/javaebmsadmin/cpaplugin/tickets/</url> | ||
</issueManagement> | ||
|
||
<developers> | ||
<developer> | ||
<id>eluinstra</id> | ||
<name>Edwin Luinstra</name> | ||
<email>[email protected]</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:ssh://git.code.sf.net/p/javaebmsadmin/cpaplugin/code</connection> | ||
</scm> | ||
|
||
<organization> | ||
<name>Ordina</name> | ||
<url>www.ordina.nl</url> | ||
</organization> | ||
|
||
<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> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.gitlab.java-ebms-adapter</groupId> | ||
<artifactId>ebms-admin</artifactId> | ||
<version>2.15.2-mic</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<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>1.7</source> | ||
<target>1.7</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> | ||
|
||
<repositories> | ||
<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> | ||
<repository> | ||
<id>codelds</id> | ||
<url>https://code.lds.org/nexus/content/groups/main-repo</url> | ||
</repository> | ||
</repositories> | ||
</project> | ||
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.github.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://github.com/java-ebms-adapter/ebms-admin-console-cpa-plugin/</url> | ||
|
||
<issueManagement> | ||
<system>Tickets</system> | ||
<url>https://github.com/java-ebms-adapter/ebms-admin-console-cpa-plugin/issues</url> | ||
</issueManagement> | ||
|
||
<developers> | ||
<developer> | ||
<id>eluinstra</id> | ||
<name>Edwin Luinstra</name> | ||
<email>[email protected]</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:[email protected]:java-ebms-adapter/ebms-admin-console-cpa-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:java-ebms-adapter/ebms-admin-console-cpa-plugin.git</developerConnection> | ||
<url>https://github.com/java-ebms-adapter/ebms-admin-console-cpa-plugin</url> | ||
</scm> | ||
|
||
<organization> | ||
<name>Ordina</name> | ||
<url>www.ordina.nl</url> | ||
</organization> | ||
|
||
<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> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.gitlab.java-ebms-adapter</groupId> | ||
<artifactId>ebms-admin</artifactId> | ||
<version>2.15.2-mic</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<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>1.7</source> | ||
<target>1.7</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> | ||
|
||
<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> | ||
</project> |