forked from jcoleman/tomcat-redis-session-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add maven repo releasing. (and cleanup accidentally committed logging.)
- Loading branch information
Showing
2 changed files
with
76 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
apply plugin: 'java' | ||
version = '1.2' | ||
apply plugin: 'maven' | ||
apply plugin: 'signing' | ||
|
||
group = 'com.orangefunction' | ||
version = '2.0.0' | ||
|
||
repositories { | ||
mavenCentral() | ||
|
@@ -14,6 +18,75 @@ dependencies { | |
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '7.0.27' | ||
compile group: 'redis.clients', name: 'jedis', version: '2.5.2' | ||
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.2' | ||
// compile group: 'commons-collections', name: 'commons-collections', version: '3.2' | ||
// testCompile group: 'junit', name: 'junit', version: '4.+' | ||
compile group: 'commons-codec', name: 'commons-codec', version: '1.9' | ||
|
||
testCompile group: 'junit', name: 'junit', version: '4.+' | ||
testCompile 'org.hamcrest:hamcrest-core:1.3' | ||
testCompile 'org.hamcrest:hamcrest-library:1.3' | ||
testCompile 'org.mockito:mockito-all:1.9.5' | ||
testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '7.0.27' | ||
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = 'javadoc' | ||
from 'build/docs/javadoc' | ||
} | ||
|
||
task sourcesJar(type: Jar) { | ||
from sourceSets.main.allSource | ||
classifier = 'sources' | ||
} | ||
|
||
artifacts { | ||
archives jar | ||
|
||
archives javadocJar | ||
archives sourcesJar | ||
} | ||
|
||
signing { | ||
sign configurations.archives | ||
} | ||
|
||
uploadArchives { | ||
repositories { | ||
mavenDeployer { | ||
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } | ||
|
||
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { | ||
authentication(userName: sonatypeUsername, password: sonatypePassword) | ||
} | ||
//repository(url: "https://oss.sonatype.org/content/repositories/snapshots") { | ||
// authentication(userName: sonatypeUsername, password: sonatypePassword) | ||
//} | ||
|
||
pom.project { | ||
name 'tomcat-redis-session-manager' | ||
packaging 'jar' | ||
description 'Tomcat Redis Session Manager is a Tomcat extension to store sessions in Redis' | ||
url 'https://github.com/jcoleman/tomcat-redis-session-manager' | ||
|
||
scm { | ||
url 'scm:[email protected]:jcoleman/tomcat-redis-session-manager.git' | ||
connection 'scm:[email protected]:jcoleman/tomcat-redis-session-manager.git' | ||
developerConnection 'scm:[email protected]:jcoleman/tomcat-redis-session-manager.git' | ||
} | ||
|
||
licenses { | ||
license { | ||
name 'MIT' | ||
url 'http://opensource.org/licenses/MIT' | ||
distribution 'repo' | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id 'jcoleman' | ||
name 'James Coleman' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters