+ another bunch of gradle updates

This commit is contained in:
Costin Leau
2011-07-18 21:11:55 +03:00
parent 40b4c5449f
commit 64cfa59ba2
3 changed files with 9 additions and 4 deletions

View File

@@ -204,7 +204,7 @@ task uploadDist(type: org.springframework.gradle.tasks.S3DistroUpload, dependsOn
group = "Distribution"
archiveFile = dist.archivePath
projectKey = 'DATAKV'
projectName = 'Spring Data Key Value'
projectName = 'Spring Data Redis'
}
defaultTasks 'clean', 'build'

View File

@@ -64,7 +64,13 @@ task docSiteLogin(type: org.springframework.gradle.tasks.Login) {
key = project.property('sshPrivateKey')
}
}
infoSpec = copySpec {
from("$projectDir/src/info") {
include 'changelog.txt'
}
}
// upload task
task uploadDocs(type: org.springframework.gradle.tasks.ScpUpload) {
dependsOn rootProject.javadoc, reference
@@ -75,4 +81,5 @@ task uploadDocs(type: org.springframework.gradle.tasks.ScpUpload) {
with(apiSpec)
with(refSpec)
with(infoSpec)
}

View File

@@ -14,7 +14,6 @@ General
* Upgraded to Spring Framework 3.1 M2
* Upgraded to Jedis 2.0.0
Package o.s.d.redis.connection
* Added awarness of the selected Redis DB
@@ -23,7 +22,6 @@ Package o.s.d.redis.core
* Fixed incorrect cast in RedisTemplate#keys()
* Removed ConnectionFactory constructor
Package o.s.d.redis.listener
* Simplified namespace declaration for Redis pubsub