-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (52 loc) · 1.67 KB
/
Copy pathbuild.gradle
File metadata and controls
64 lines (52 loc) · 1.67 KB
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
57
58
59
60
61
62
63
64
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.3'
}
}
apply from: 'https://raw.github.com/gaelyk/gaelyk/master/common.gradle'
apply plugin: 'maven'
apply plugin: 'nexus'
archivesBaseName = "gaelyk-bootstrap-resources"
version = ext.gaelykLatestVersion
group = 'org.gaelyk'
repositories { mavenLocal() }
dependencies {
compile "org.codehaus.groovy:groovy-all:${project.ext.gaelykGroovyVersion}"
compile "org.gaelyk:gaelyk-resources:${project.ext.gaelykLatestVersion}"
testCompile "org.spockframework:spock-core:${project.ext.gaelykSpockVersion}"
testCompile "com.google.appengine:appengine-api-stubs:${project.ext.gaelykAppEngineVersion}"
testCompile "com.google.appengine:appengine-testing:${project.ext.gaelykAppEngineVersion}"
}
boolean signingEnabled = !hasProperty('skipSigning') || skipSigning != 'true'
nexus {
sign = signingEnabled
}
modifyPom {
project {
name 'Gaelyk Bootstrap Resources Plugin'
packaging 'jar'
description 'Gaelyk Bootstrap Plugin provides Twitter Bootstrap resources for Gaelyk applications.'
url 'https://github.com/musketyr/gaelyk-bootstrap-resources-plugin'
scm {
url 'scm:git@github.com:gaelyk/gaelyk-bootstrap-resources-plugin.git'
connection 'scm:git@github.com:gaelyk/gaelyk-bootstrap-resources-plugin.git'
developerConnection 'scm:git@github.com:gaelyk/gaelyk-bootstrap-resources-plugin.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'vladimirorany'
name 'Vladimir Orany'
}
}
}
}