Skip to content

Commit

Permalink
Add project metadata to POM (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaitanyaPramod committed Apr 30, 2018
1 parent 91a07f8 commit 8f38c68
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,30 @@ publishing {
from components.java

artifact sourceJar
pom.withXml {
def root = asNode()
root.appendNode('description', 'Gradle plugin that creates FindBugs reports for android projects')
root.appendNode('name', 'findbugs-android-gradle-plugin')
root.appendNode('url', 'https://findbugs-android.chaitanyapramod.com/')
root.children().last() + {
licenses {
license {
name 'MIT License'
url 'https://opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'ChaitanyaPramod'
name 'Chaitanya Pramod'
email 'me@chaitanyapramod.com'
}
}
scm {
url 'https://github.com/ChaitanyaPramod/findbugs-android.git'
}
}
}
}
}
}
Expand Down

0 comments on commit 8f38c68

Please sign in to comment.