-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
71 lines (57 loc) · 1.54 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
60
61
62
63
64
65
66
67
68
69
70
71
apply plugin: 'groovy'
apply plugin: 'nexus'
apply plugin: 'signing'
modifyPom {
project {
name 'Gradle VPN Plugin'
description 'A plugin for the Gradle build system that makes it easier to build when your custom repository is behind a VPN.'
url 'https://github.com/joemccall86/gradle-vpn-plugin'
inceptionYear '2012'
scm {
url 'https://github.com/joemccall86/gradle-vpn-plugin.git'
connection 'scm:https://[email protected]/joemccall86/gradle-vpn-plugin.git'
developerConnection 'scm:git://github.com/joemccall86/gradle-vpn-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 'joemccall86'
name 'Joe McCall'
email '[email protected]'
}
}
}
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.2'
}
}
group = 'net.ll86.plugins'
version = '0.2-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
groovy localGroovy()
testCompile 'org.spockframework:spock-core:0.7-groovy-1.8'
}
buildscript {
repositories {
mavenCentral()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.3'
}
// vim:ft=groovy:tw=0