Skip to content

Instantly share code, notes, and snippets.

@wkazunori
Last active December 26, 2015 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wkazunori/7078263 to your computer and use it in GitHub Desktop.
Save wkazunori/7078263 to your computer and use it in GitHub Desktop.
Jenkinsプラグインを開発する ref: http://qiita.com/kazuqqfp/items/ded99eb8d7bd967b9d2a
<pluginGroups>
<pluginGroup>org.jenkins-ci.tools</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>jenkins</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
$ mvn -cpu hpi:create
Enter the groupId of your plugin [org.jenkins-ci.plugins]:
Enter the artifactId of your plugin (normally without '-plugin' suffix):
$ mvn hpi:run
$ mvn package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment