Skip to content

Commit

Permalink
Reformat build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
chunhoong committed Jan 9, 2021
1 parent 67bc846 commit db2012d
Showing 1 changed file with 26 additions and 23 deletions.
49 changes: 26 additions & 23 deletions sms-receiver-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,35 @@ dependencies {

publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
artifact sourcesJar
artifact javadocJar
pom {
name = 'SMS Receiver'
description = 'Library to read sms from JVM application.'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
shadow(MavenPublication) {
publication ->
project.shadow.component(publication)

artifact sourcesJar
artifact javadocJar

pom {
name = 'SMS Receiver'
description = 'Library to read sms from JVM application.'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
}
developers {
developer {
id = 'chunhoong'
name = 'Lim Chun Hoong'
email = 'chunhoong.lim@outlook.my'
developers {
developer {
id = 'chunhoong'
name = 'Lim Chun Hoong'
email = 'chunhoong.lim@outlook.my'
}
}
scm {
connection = 'scm:git:https://github.com/chunhoong/sms-receiver.git'
developerConnection = 'scm:git:git@github.com:chunhoong/sms-receiver.git'
url = 'https://github.com/chunhoong/sms-receiver'
}
}
scm {
connection = 'scm:git:https://github.com/chunhoong/sms-receiver.git'
developerConnection = 'scm:git:git@github.com:chunhoong/sms-receiver.git'
url = 'https://github.com/chunhoong/sms-receiver'
}
}
}
}
}
Expand Down

0 comments on commit db2012d

Please sign in to comment.