release 5.0.0.Beta2

This commit is contained in:
Steve Ebersole 2015-04-29 23:21:38 -05:00
parent 371632b977
commit f6980f3324
3 changed files with 7 additions and 1 deletions

View File

@ -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 { dependencies {
compile(project(':hibernate-core')) compile(project(':hibernate-core'))
compile([group: 'postgresql', name: 'postgresql', version: '8.4-701.jdbc4']) compile([group: 'postgresql', name: 'postgresql', version: '8.4-701.jdbc4'])

View File

@ -213,7 +213,7 @@ task buildBundles(type: Task, dependsOn: [distZip,distTar]) {
task uploadBundles(type: Exec, dependsOn: buildBundles) { task uploadBundles(type: Exec, dependsOn: buildBundles) {
description = "Uploads release bundles to SourceForge" 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' executable 'rsync'
args '-vr', '-e ssh', "${project.buildDir}/distributions/", url args '-vr', '-e ssh', "${project.buildDir}/distributions/", url

View File

@ -75,6 +75,7 @@ processResources.doLast {
groupId project.group groupId project.group
packaging 'maven-plugin' packaging 'maven-plugin'
name 'Enhance Plugin of the Hibernate project for use with Maven build system.' 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 { properties {
'project.build.sourceEncoding' 'UTF-8' 'project.build.sourceEncoding' 'UTF-8'
} }