Skip to content

Commit

Permalink
INFRA-588: Fix uploading of JAR files
Browse files Browse the repository at this point in the history
Bump the version of the parent plugin to avoid failing the uploading
of the plugin when releasing. Also fix the issues highlighted by this
new version.
  • Loading branch information
Peter Jönsson committed Feb 8, 2017
1 parent 44d621e commit d525c3c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,5 +1,7 @@
target/
work*/
release.properties
*.releaseBackup

# IntelliJ project files
*.iml
Expand Down
8 changes: 4 additions & 4 deletions README.md
@@ -1,15 +1,15 @@
swarm-plugin
============

Jenkins Swarm plugin for self organizing slave nodes.
Jenkins Swarm plugin for self organizing slave nodes.

[![Build Status](https://jenkins.ci.cloudbees.com/buildStatus/icon?job=plugins/swarm-plugin)](https://jenkins.ci.cloudbees.com/job/plugins/swarm-plugin)

This plugin enables slaves to auto-discover a nearby Jenkins master and
This plugin enables nodes to auto-discover a nearby Jenkins master and
join it automatically, thereby forming an ad-hoc cluster. Swarm makes it
easier to auto scale a Jenkins cluster by spinning up and tearing down
new slave nodes since no manual intervention is required to make them
join or leave the cluster.
new nodes since no manual intervention required to make them join or leave the
cluster.

More documentation available on the Jenkins wiki:

Expand Down
2 changes: 2 additions & 0 deletions client/pom.xml
Expand Up @@ -15,13 +15,15 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
Expand Up @@ -25,6 +25,7 @@ THE SOFTWARE.
<!--
Config page
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout"
xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry title="${%Description}" help="/help/system-config/master-slave/description.html">
Expand All @@ -46,4 +47,4 @@ THE SOFTWARE.
<f:slave-mode name="mode" node="${it}" />

<f:descriptorList title="${%Node Properties}" descriptors="${h.getNodePropertyDescriptors(descriptor.clazz)}" field="nodeProperties" />
</j:jelly>
</j:jelly>
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.480.3</version>
<version>2.11</version>
</parent>

<artifactId>swarm-plugin</artifactId>
Expand Down

0 comments on commit d525c3c

Please sign in to comment.