mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Added Gradle project based on the POM.
This commit is contained in:
parent
200a81b9fc
commit
a5c0bd921f
274 changed files with 40416 additions and 0 deletions
38
modules/wrapper/build.gradle
Normal file
38
modules/wrapper/build.gradle
Normal file
|
@ -0,0 +1,38 @@
|
|||
jar {
|
||||
manifest {
|
||||
attributes 'Main-Class': 'com.beust.kobalt.wrapper.Main'
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
from(components.java)
|
||||
artifact sourcesJar
|
||||
artifact javadocJar
|
||||
|
||||
pom {
|
||||
name = project.name
|
||||
description = 'Wrapper for Kobalt'
|
||||
url = 'https://beust.com/kobalt'
|
||||
licenses {
|
||||
license {
|
||||
name = 'Apache-2.0'
|
||||
url = 'https://www.apache.org/licenses/LICENSE-2.0'
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
name = 'Cedric Beust'
|
||||
email = 'cedric@beust.com'
|
||||
}
|
||||
}
|
||||
scm {
|
||||
connection = 'scm:https://github.com/cbeust/kobalt.git'
|
||||
developerConnection = 'scm:git@github.com:cbeust/kobalt.git'
|
||||
url = 'https://github.com/cbeust/kobalt'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue