Skip to content

Commit

Permalink
m0smithgh-31 only do verbose logging after a call to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew O. Smith committed Mar 12, 2015
1 parent ba00275 commit 053d2d1
Show file tree
Hide file tree
Showing 12 changed files with 235 additions and 349 deletions.
20 changes: 18 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin:'application'
apply plugin: 'signing'
apply plugin: 'maven'

group 'com.software-ninja'
version version
Expand Down Expand Up @@ -174,6 +175,21 @@ apply plugin: 'release'

createReleaseTag.dependsOn uploadArchives

//
// Write a POM
//



task writeNewPom << {
pom {
project {
inceptionYear '2008'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
}
}.writeTo("$buildDir/newpom.xml")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.1.1
version=2.1.2-SNAPSHOT
profile=empty
ossrhUsername=m0smith
ossrhPassword=entered-during-uploadArchive-and-release
Loading

0 comments on commit 053d2d1

Please sign in to comment.