2015-05-18 23:23:35 -05:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
|
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
|
|
*/
|
2010-10-09 13:55:13 -05:00
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
apply from: rootProject.file( 'gradle/base-information.gradle' )
|
|
|
|
apply from: rootProject.file( 'gradle/publishing-repos.gradle' )
|
2018-01-18 13:21:11 +00:00
|
|
|
apply from: rootProject.file( 'gradle/publishing-pom.gradle' )
|
2018-01-10 15:06:58 -06:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: 'maven-publish-auth'
|
2013-04-16 18:25:20 -05:00
|
|
|
|
2018-07-11 17:17:05 +01:00
|
|
|
description = '(deprecated - use org.infinispan:infinispan-hibernate-cache-v53 instead)'
|
2010-10-09 13:55:13 -05:00
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
ext {
|
|
|
|
relocatedGroupId = 'org.infinispan'
|
2018-07-11 17:17:05 +01:00
|
|
|
relocatedArtifactId = 'infinispan-hibernate-cache-v53'
|
|
|
|
relocatedVersion = '9.3.0.Final'
|
2018-01-10 15:06:58 -06:00
|
|
|
}
|
2017-12-18 17:19:13 +00:00
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2018-02-01 14:00:37 -06:00
|
|
|
publishedArtifacts {
|
2017-12-18 17:19:13 +00:00
|
|
|
pom.withXml {
|
|
|
|
def relocation = asNode().appendNode( 'distributionManagement' ).appendNode( 'relocation' )
|
2018-01-10 15:06:58 -06:00
|
|
|
relocation.appendNode( 'groupId', project.relocatedGroupId)
|
|
|
|
relocation.appendNode( 'artifactId', project.relocatedArtifactId )
|
|
|
|
relocation.appendNode( 'version', project.relocatedVersion )
|
2017-12-18 17:19:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-25 16:39:32 +02:00
|
|
|
}
|
|
|
|
|
2018-02-01 14:00:37 -06:00
|
|
|
task release( dependsOn: bintrayUpload )
|