Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f9127cb
Change parent version to 3.0.0-RC3 and Remoting version to 3.0.0
wjprakash Oct 16, 2012
b04d745
Add SCM info and description
wjprakash Oct 16, 2012
442e06b
Merge branch 'master' of git://github.com/jbaruch/maven3-plugin into …
wjprakash Nov 28, 2012
5d81b61
Adapt the plugin for Hudson 3.x
wjprakash Jun 6, 2013
c5bda5e
Switch to the released version 2.2.0 of GWT, JAXB & REST plugins
wjprakash Jun 6, 2013
8e2a27c
Adapt the plugin for Hudson 3.x
wjprakash Jun 6, 2013
d2d6ebf
Add oss-parent as super POM. so that the plugin can be released succe…
wjprakash Jun 6, 2013
79eec04
[maven-release-plugin] prepare release maven3-plugin-parent-3.0.1
wjprakash Jun 6, 2013
7e9baea
[maven-release-plugin] prepare for next development iteration
wjprakash Jun 6, 2013
4a8cde3
Fix: Memory Consumption - Do not keep the full cache Jobs
wjprakash Jun 6, 2013
75c2baf
Removed references to AbstractProject, keep only full name instead
rovarghe Jun 6, 2013
427dcb7
Fix the test failures
wjprakash Sep 20, 2013
f8dc7b2
[maven-release-plugin] prepare release 3.0.2
wjprakash Sep 20, 2013
c827151
[maven-release-plugin] prepare for next development iteration
wjprakash Sep 20, 2013
412fcaa
Remove bogus property (was causing old versions of sub-components to …
mcculls Dec 3, 2013
b2ef723
Bug 420160: Add support for Maven 3.1.x
mcculls Dec 3, 2013
f6e01dc
Merge pull request #2 from hudson3-plugins/fix-versions
wjprakash Dec 3, 2013
7705a6f
Bug 420160: use @Typed to stop Maven from seeing our delegate spy imp…
mcculls Dec 3, 2013
7c4d9d7
Merge pull request #3 from hudson3-plugins/support-maven-3.1
wjprakash Dec 6, 2013
e798d37
Set permissions correctly on bundled Maven instance
Jan 28, 2014
652198e
Merge pull request #4 from peterjanes/master
wjprakash Feb 14, 2014
2aef46d
[maven-release-plugin] prepare release 3.0.3
wjprakash Mar 4, 2014
6cac90e
[maven-release-plugin] prepare for next development iteration
wjprakash Mar 4, 2014
4b76cad
Switch Parent to Hudson 3.2.0-M0
wjprakash Apr 21, 2014
5b5dd89
[maven-release-plugin] prepare release maven3-plugin-parent-3.0.4
wjprakash May 6, 2014
08f4473
[maven-release-plugin] prepare for next development iteration
wjprakash May 6, 2014
6f31455
Bug 395725 - White space not ignored when specifying a pom.xml
Jul 18, 2014
621c94b
Merge pull request #5 from zxiiro/pom-whitespace
bobfoster Jul 18, 2014
1631f30
Cleanup pom.xml
wjprakash Apr 25, 2015
9e0f511
remove the duplicate dependency on rest-plugin
wjprakash Apr 25, 2015
8841980
Switch Plugin parent version to 3.3.0-M0
wjprakash May 19, 2015
e4b015a
[maven-release-plugin] prepare release 3.0.5
wjprakash May 19, 2015
f1de43f
[maven-release-plugin] prepare for next development iteration
wjprakash May 19, 2015
0096b57
Bug Fix: Hudson Maven3 Plugin version 3.0.4 and maven 3.3.1 -> Missi…
wjprakash May 19, 2015
9b96106
Bug Fix: 386082 - Add the ability to disable a builder
wjprakash May 20, 2015
3e92445
[maven-release-plugin] prepare release maven3-plugin-parent-3.0.6
wjprakash Feb 19, 2016
a850ac7
[maven-release-plugin] prepare for next development iteration
wjprakash Feb 19, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 72 additions & 7 deletions maven3-eventspy-3.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,17 @@ THE SOFTWARE.
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>hudson-maven3</artifactId>
<version>3.0.1-SNAPSHOT</version>
<artifactId>maven3-plugin-parent</artifactId>
<version>3.0.7-SNAPSHOT</version>
</parent>

<artifactId>maven3-eventspy-3.0</artifactId>
<name>Hudson :: Maven 3 :: Event Spy 3.0</name>
<name>Hudson Maven3 Event Spy 3.0</name>

<dependencies>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-utils</artifactId>
<version>${hudson.core.version}</version>
<exclusions>
<exclusion>
<groupId>commons-lang</groupId>
Expand Down Expand Up @@ -66,7 +65,7 @@ THE SOFTWARE.
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-embedder</artifactId>
<version>${mavenVersion}</version>
<version>3.0.3</version>
<scope>provided</scope>
</dependency>

Expand All @@ -75,11 +74,77 @@ THE SOFTWARE.
<artifactId>maven3-model</artifactId>
<type>test-jar</type>
</dependency>


<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-core</artifactId>
<scope>provided</scope>
<type>jar</type>
<exclusions>
<exclusion>
<artifactId>hudson-cli</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
<exclusion>
<artifactId>hudson-remoting</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-remoting</artifactId>
<version>${hudson.remoting.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-plugin-utils</artifactId>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-war</artifactId>
<scope>provided</scope>
<type>war</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-test-framework</artifactId>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-inject</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hudson-core</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-service</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hudson-plugin-utils</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>

<!--
| Test dependencies
-->
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-test-utils</artifactId>
<version>${hudson.core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
182 changes: 182 additions & 0 deletions maven3-eventspy-3.1/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
The MIT License

Copyright (c) 2010-2011, Sonatype, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->

<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>
<parent>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>maven3-plugin-parent</artifactId>
<version>3.0.7-SNAPSHOT</version>
</parent>

<artifactId>maven3-eventspy-3.1</artifactId>
<name>Hudson Maven3 Event Spy 3.1</name>

<dependencies>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-utils</artifactId>
<exclusions>
<exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>maven3-eventspy-common</artifactId>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-annotations</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-embedder</artifactId>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>maven3-model</artifactId>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-core</artifactId>
<scope>provided</scope>
<type>jar</type>
<exclusions>
<exclusion>
<artifactId>hudson-cli</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
<exclusion>
<artifactId>hudson-remoting</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-remoting</artifactId>
<version>${hudson.remoting.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-plugin-utils</artifactId>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-war</artifactId>
<scope>provided</scope>
<type>war</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-test-framework</artifactId>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-inject</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hudson-core</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-service</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hudson-plugin-utils</artifactId>
<groupId>org.eclipse.hudson</groupId>
</exclusion>
</exclusions>
</dependency>

<!--
| Test dependencies
-->
<dependency>
<groupId>org.eclipse.hudson</groupId>
<artifactId>hudson-test-utils</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<executions>
<execution>
<goals>
<goal>generate-metadata</goal>
<goal>generate-test-metadata</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<!-- this is assembled by the maven slavebundle -->
<Class-Path>maven3-eventspy-runtime.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>

</project>
Loading