Skip to content

Commit

Permalink
Merge pull request #3 from ltamaster/master
Browse files Browse the repository at this point in the history
Add gitignore
  • Loading branch information
ahonor authored Jun 28, 2017
2 parents b92ff9d + bbdc8b7 commit 4beb117
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Created by https://www.gitignore.io/api/java,gradle


### Gradle ###
.gradle
/build/
/file/build/
/waitfor/build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Cache of project
.gradletasknamecache

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

# End of https://www.gitignore.io/api/java,gradle
2 changes: 1 addition & 1 deletion file/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ ext.archivesBaseName = "file"
ext.pluginBaseFolder ="."

project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version
ext.archiveFilename = ext.archivesBaseName + '-v' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'
2 changes: 1 addition & 1 deletion waitfor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext.archivesBaseName ="waitfor"
ext.pluginBaseFolder ="."

project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version
ext.archiveFilename = ext.archivesBaseName + '-v' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'

0 comments on commit 4beb117

Please sign in to comment.