release 5.0.0.Beta2
This commit is contained in:
parent
371632b977
commit
f6980f3324
|
@ -29,6 +29,11 @@ repositories {
|
|||
}
|
||||
}
|
||||
|
||||
mavenPom {
|
||||
name = 'Integrate support for Spatial/GIS data into Hibernate O/RM'
|
||||
description = 'Integrate support for Spatial/GIS data into Hibernate O/RM'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile(project(':hibernate-core'))
|
||||
compile([group: 'postgresql', name: 'postgresql', version: '8.4-701.jdbc4'])
|
||||
|
|
|
@ -213,7 +213,7 @@ task buildBundles(type: Task, dependsOn: [distZip,distTar]) {
|
|||
task uploadBundles(type: Exec, dependsOn: buildBundles) {
|
||||
description = "Uploads release bundles to SourceForge"
|
||||
|
||||
final String url = "frs.sourceforge.net:/home/frs/project/hibernate/hibernate${majorVersion}/${version}";
|
||||
final String url = "frs.sourceforge.net:/home/frs/project/hibernate/hibernate-orm/${majorVersion}/${version}";
|
||||
|
||||
executable 'rsync'
|
||||
args '-vr', '-e ssh', "${project.buildDir}/distributions/", url
|
||||
|
|
|
@ -75,6 +75,7 @@ processResources.doLast {
|
|||
groupId project.group
|
||||
packaging 'maven-plugin'
|
||||
name 'Enhance Plugin of the Hibernate project for use with Maven build system.'
|
||||
description 'Enhance Plugin of the Hibernate project for use with Maven build system.'
|
||||
properties {
|
||||
'project.build.sourceEncoding' 'UTF-8'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue