Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented a second goal "macker-no-fork" #6

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: java
deploy:
provider: releases
api_key:
secure: ${apikey}
file: target/*.jar
file_glob: true
on:
tags: true
repo: arxes-tolina/macker-maven-plugin
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://buildhive.cloudbees.com/job/andrena/job/macker-maven-plugin/badge/icon)](https://buildhive.cloudbees.com/job/andrena/job/macker-maven-plugin/)
[![Build Status](https://travis-ci.org/arxes-tolina/macker-maven-plugin.svg?branch=master)](https://travis-ci.org/arxes-tolina/macker-maven-plugin)

This is a [fork from Codehaus](http://mojo.codehaus.org/macker-maven-plugin/) ([source](http://svn.codehaus.org/mojo/trunk/sandbox/macker-maven-plugin/)), who initiated and developed this project.

Expand Down
61 changes: 56 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>de.andrena.tools.macker</groupId>
<artifactId>macker-maven-plugin</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0.3-tolina-2</version>
<packaging>maven-plugin</packaging>

<name>Macker Maven Plugin</name>
Expand Down Expand Up @@ -121,7 +121,7 @@
<dependency>
<groupId>de.andrena.tools.macker</groupId>
<artifactId>macker</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand All @@ -136,7 +136,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -152,7 +152,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3</version>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
Expand All @@ -175,13 +175,22 @@
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.3</version>
<version>1.5</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-docck-plugin</artifactId>
Expand All @@ -207,6 +216,35 @@
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<versionRange>[3.2,)</versionRange>
<goals>
<goal>descriptor</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<profiles>
Expand Down Expand Up @@ -282,4 +320,17 @@
</plugin>
</plugins>
</reporting>

<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://srvrepo.tolina.local/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>releases</id>
<name>Nexus Release Repository</name>
<url>http://srvrepo.tolina.local/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>
</project>
Loading