Skip to content

Commit

Permalink
Fixed JENKINS-5968
Browse files Browse the repository at this point in the history
  • Loading branch information
rseguy committed Aug 4, 2011
1 parent 367965c commit 8f4fef5
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 25 deletions.
7 changes: 7 additions & 0 deletions .gitignore
@@ -0,0 +1,7 @@
target
work

# Eclipse project files
.settings
.classpath
.project
21 changes: 21 additions & 0 deletions README.md
@@ -0,0 +1,21 @@
Backup plugin
=============
Copyright © 2009-2011, Vincent Sellier, Manufacture Française des Pneumatiques Michelin, Romain Seguy, and other contributors. Licensed under MIT License.

About this plugin
-----------------
The Backup plugin is meant to be used from [Hudson][1] or [Jenkins][2] to provide a way to backup and restore Hudson/Jenkins configuration files. Please take a look at [Jenkins' wiki][3] to get detailed information.

Installation
------------
The Backup plugin can be installed from any Hudson or Jenkins installation connected to the Internet using the **Plugin Manager** screen.

Source code
-----------
The primary location for the source code of this plugin is on [Jenkins' SVN repository][4]. It is also mirrored on [GitHub][5] for conveniency.

[1]: http://hudson-ci.org/
[2]: http://jenkins-ci.org/
[3]: http://wiki.jenkins-ci.org/display/JENKINS/Backup+Plugin
[4]: https://svn.jenkins-ci.org/trunk/hudson/plugins/backup/
[5]: https://github.com/jenkinsci/backup-plugin
38 changes: 17 additions & 21 deletions pom.xml
Expand Up @@ -10,9 +10,9 @@
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>backup</artifactId>
<packaging>hpi</packaging>
<name>Hudson Backup plugin</name>
<url>http://wiki.hudson-ci.org/display/HUDSON/Backup+Plugin</url>
<description>Backups and restores Hudson files</description>
<name>Backup plugin</name>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Backup+Plugin</url>
<description>Backups and restores Hudson/Jenkins files</description>
<version>1.6.1-SNAPSHOT</version>

<developers>
Expand Down Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>1.0-alpha-12</version>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>org.codehus.plexus</groupId>
Expand All @@ -57,22 +57,18 @@
</dependency>
</dependencies>

<!-- see http://groups.google.com/group/hudson-dev/browse_thread/thread/83e34c639eec470a for the rationale behind this -->
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>

<!-- see http://groups.google.com/group/hudson-dev/browse_thread/thread/83e34c639eec470a for the rationale behind this -->
<scm>
<connection>scm:svn:https://guest@svn.java.net/svn/hudson~svn/trunk/hudson/plugins/backup</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/hudson~svn/trunk/hudson/plugins/backup</developerConnection>
<url>https://hudson.dev.java.net/source/browse/hudson/trunk/hudson/plugins/backup</url>
<!-- see http://groups.google.com/group/hudson-dev/browse_thread/thread/83e34c639eec470a for the rationale behind this -->
<scm>
<connection>scm:svn:https://guest@svn.jenkins-ci.org/trunk/hudson/plugins/backup/</connection>
<developerConnection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/backup/</developerConnection>
<url>https://hudson.dev.java.net/source/browse/hudson/trunk/hudson/plugins/backup</url>
</scm>

<!-- see http://groups.google.com/group/hudson-dev/browse_thread/thread/6ea03cf2b527376c for the rationale behind this -->
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>http://maven.jenkins-ci.org/content/repositories/releases/</url>
</repository>
</distributionManagement>
</project>
@@ -1,6 +1,6 @@
# The MIT License
#
# Copyright (c) 2009-2010, Vincent Sellier
# Copyright (c) 2009-2011, Vincent Sellier
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -21,7 +21,7 @@
# THE SOFTWARE.

display_name=Backup manager
description=Backup or Restore Hudson configuration files
description=Backup or Restore Jenkins configuration files
fileAlreadyExists=File already exists, if you continue, it will be overridden.
fileNotExists=File does not exist.
emptyFileName=File name is required.
Expand Down
@@ -1,6 +1,6 @@
# The MIT License
#
# Copyright (c) 2009-2010, Vincent Sellier
# Copyright (c) 2009-2011, Vincent Sellier
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -21,7 +21,7 @@
# THE SOFTWARE.

display_name=Gestionnaire de backup
description=Sauver ou Restaurer les fichiers de configuration d''Hudson
description=Sauver ou Restaurer les fichiers de configuration de Jenkins
emptyFileName=Le nom de fichier est obligatoire.
fileAlreadyExists=Ce fichier existe, si vous continuez, il sera ecras\u00E9.
fileNotExists=Ce fichier n'existe pas.
Expand Down

0 comments on commit 8f4fef5

Please sign in to comment.