-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (50 loc) · 1.72 KB
/
build.gradle
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
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 from: 'https://raw.github.com/gaelyk/gaelyk/master/common-nexus.gradle'
archivesBaseName = "gaelyk-remote-connector"
version = project.ext.gaelykLatestVersion
group = 'org.gaelyk'
dependencies {
compile "org.codehaus.groovy:groovy-all:${project.ext.gaelykGroovyVersion}"
compile "org.gaelyk:gaelyk:${project.ext.gaelykLatestVersion}"
compile "com.google.appengine:appengine-remote-api:${project.ext.gaelykAppEngineVersion}"
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}"
}
modifyPom {
project {
name 'Gaelyk Remote Connector'
packaging 'jar'
description 'Gaelyk Remote Connector provides simple way how to connect to running application from your development server.'
url 'https://github.com/gaelyk/gaelyk-remote-connector'
scm {
url 'scm:[email protected]:github.com/gaelyk/gaelyk-remote-connector.git'
connection 'scm:[email protected]:github.com/gaelyk/gaelyk-remote-connector.git'
developerConnection 'scm:[email protected]:gaelyk/github.com/gaelyk/gaelyk-remote-connector.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'
}
}
}
}
wrapper {
gradleVersion = project.ext.gaelykGradleVersion
}