-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
100 lines (82 loc) · 2.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
apply plugin: 'java'
apply plugin: 'nexus'
apply plugin: 'eclipse'
group = 'com.trigonic'
version = '0.4-SNAPSHOT'
project.ext {
springVersion = '3.1.+'
joptSimpleVersion = '4.3'
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.2'
}
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile "org.springframework:spring-beans:${springVersion}"
compile "org.springframework:spring-context:${springVersion}"
compile "org.springframework:spring-core:${springVersion}"
compile "net.sf.jopt-simple:jopt-simple:${joptSimpleVersion}"
compile 'com.trigonic:spring-utils:0.6'
testCompile 'junit:junit:4.+'
testRuntime 'org.slf4j:slf4j-simple:1.6.+'
}
task packageJavadoc(type: Jar, dependsOn: 'javadoc') {
from javadoc.destinationDir
classifier = 'javadoc'
}
task packageSources(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives jar
archives packageJavadoc
archives packageSources
}
modifyPom {
project {
name 'spring-cmdline - Spring Command Line'
packaging 'jar'
description 'This library provides a Spring mechanism for launching a command-line application with options and operands.'
url 'https://github.com/TrigonicSolutions/spring-cmdline'
inceptionYear '2011'
parent {
groupId 'org.sonatype.oss'
artifactId 'oss-parent'
version '7'
}
scm {
url 'scm:git://github.com/TrigonicSolutions/spring-cmdline.git'
connection 'scm:git://github.com/TrigonicSolutions/spring-cmdline.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 'akrueger'
name 'Alan Krueger'
email '[email protected]'
roles{
role 'Developer'
}
timezone '-6'
}
}
}
}
task createWrapper(type: Wrapper) {
gradleVersion = '1.2'
}