-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
116 lines (94 loc) · 3.13 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'signing'
group = 'com.palominolabs.jersey'
version = '1.0.3-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
ext {
depVersions = [
jersey: '1.17.1',
slf4j: '1.7.5',
jetty: '9.0.5.v20130815'
]
}
dependencies {
compile "com.sun.jersey:jersey-core:$depVersions.jersey"
compile "com.sun.jersey:jersey-server:$depVersions.jersey"
testCompile "com.sun.jersey:jersey-servlet:$depVersions.jersey"
compile 'com.google.code.findbugs:jsr305:2.0.1'
compile 'com.google.guava:guava:15.0'
compile "org.slf4j:slf4j-api:$depVersions.slf4j"
testRuntime "org.slf4j:slf4j-simple:$depVersions.slf4j"
testRuntime "org.slf4j:log4j-over-slf4j:$depVersions.slf4j"
testRuntime "org.slf4j:jcl-over-slf4j:$depVersions.slf4j"
testCompile "org.slf4j:jul-to-slf4j:$depVersions.slf4j"
testCompile 'junit:junit:4.11'
testCompile 'org.codehaus.groovy:groovy-all:2.1.7'
testCompile "org.eclipse.jetty:jetty-servlet:$depVersions.jetty"
testCompile 'com.ning:async-http-client:1.7.19'
}
repositories {
mavenCentral()
}
task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allJava
classifier = 'sources'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}
artifacts {
// register in 'archives' config so they will be signed
archives sourcesJar
archives javadocJar
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
// Set sonatypeUsername and sonatypePassword in your ~/.gradle/gradle.properties to be able to use this.
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
repository(url: isReleaseVersion ?
"https://oss.sonatype.org/service/local/staging/deploy/maven2/" :
"https://oss.sonatype.org/content/repositories/snapshots/") {
def u = project.hasProperty('sonatypeUsername') ? sonatypeUsername : 'FIXME'
def p = project.hasProperty('sonatypePassword') ? sonatypePassword : 'FIXME'
authentication(userName: u, password: p)
}
pom.project {
name 'jersey-cors-filter'
packaging 'jar'
description 'A Jersey filter for adding CORS headers'
url 'https://github.com/palominolabs/jersey-cors-filter'
scm {
url 'scm:[email protected]:palominolabs/jersey-cors-filter.git'
connection 'scm:[email protected]:palominolabs/jersey-cors-filter.git'
developerConnection 'scm:[email protected]:palominolabs/jersey-cors-filter.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 'marshallpierce'
name 'Marshall Pierce'
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}