Created
June 22, 2013 01:04
-
-
Save ukiuni/5835387 to your computer and use it in GitHub Desktop.
Jenkins Pluginを作成してみた。 ref: http://qiita.com/ukiuni@github/items/0e164ac69b4f3c9ac56a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host github.com | |
HostName github.com | |
IdentityFile /Users/user/.ssh/github.key | |
User XXXXX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<scm> | |
<connection>scm:git:ssh://github.com/jenkinsci/XXXXXXXX.git</connection> | |
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/XXXXXXXX.git</developerConnection> | |
<url>https://github.com/jenkinsci/XXXXXXXX.git</url> | |
</scm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
・・・ | |
<servers> | |
<server> | |
<id>maven.jenkins-ci.org</id> | |
<username>XXXXXX</username> | |
<password>XXXXXX</password> | |
</server> | |
</servers> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment