1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
buildscript {
dependencies {
classpath project.files("gradle/plugins/clojuresque-1.5.4.jar")
classpath project.files("gradle/plugins/clojars-1.0.0.jar")
classpath project.files("gradle/plugins/local-dotgradle-1.0.0.jar")
}
}
repositories {
flatDir { dir project.file("gradle/plugins") }
}
apply plugin: 'clojure'
apply plugin: clojuresque.ClojarsPlugin
apply plugin: 'local-dotgradle'
apply plugin: 'signing'
group = 'de.kotka'
version = '3.1.1'
defaultRepositories {
mavenCentral()
}
dependencies {
compile 'org.clojure:clojure:1.2.0'
}
signing {
sign configurations.archives
}
clojars {
deploy(uploadArchives) {
project {
licenses {
license {
name 'MIT License'
url 'http://opensource.org/licenses/MIT'
distribution 'repo'
}
}
description "A lazy map implementation for Clojure"
url "http://bitbucket.org/kotarak/lazymap"
scm {
connection 'scm:hg:hg@bitbucket.org:kotarak/lazymap'
developerConnection 'scm:hg:hg@bitbucket.org:kotarak/lazymap'
url 'hg@bitbucket.org:kotarak/lazymap'
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = "1.3"
}
|