68 lines
2.4 KiB
Groovy
68 lines
2.4 KiB
Groovy
|
/*
|
||
|
* 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.
|
||
|
*/
|
||
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
||
|
|
||
|
publishing {
|
||
|
publications {
|
||
|
// relocation for the published artifacts based on the old groupId
|
||
|
relocationPom( MavenPublication ) {
|
||
|
pom {
|
||
|
name = project.name + ' - relocation'
|
||
|
groupId = 'org.hibernate'
|
||
|
artifactId = project.name
|
||
|
version = project.version
|
||
|
|
||
|
description = project.description
|
||
|
url = 'https://hibernate.org/orm'
|
||
|
|
||
|
organization {
|
||
|
name = 'Hibernate.org'
|
||
|
url = 'https://hibernate.org'
|
||
|
}
|
||
|
|
||
|
licenses {
|
||
|
license {
|
||
|
name = 'GNU Library General Public License v2.1 or later'
|
||
|
url = 'https://www.opensource.org/licenses/LGPL-2.1'
|
||
|
comments = 'See discussion at https://hibernate.org/community/license/ for more details.'
|
||
|
distribution = 'repo'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
scm {
|
||
|
url = 'https://github.com/hibernate/hibernate-orm'
|
||
|
connection = 'scm:git:https://github.com/hibernate/hibernate-orm.git'
|
||
|
developerConnection = 'scm:git:git@github.com:hibernate/hibernate-orm.git'
|
||
|
}
|
||
|
|
||
|
developers {
|
||
|
developer {
|
||
|
id = 'hibernate-team'
|
||
|
name = 'The Hibernate Development Team'
|
||
|
organization = 'Hibernate.org'
|
||
|
organizationUrl = 'https://hibernate.org'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
issueManagement {
|
||
|
system = 'jira'
|
||
|
url = 'https://hibernate.atlassian.net/browse/HHH'
|
||
|
}
|
||
|
|
||
|
distributionManagement {
|
||
|
relocation {
|
||
|
groupId = 'org.hibernate.orm'
|
||
|
artifactId = project.name
|
||
|
version = project.version
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.preVerifyRelease.dependsOn generatePomFileForRelocationPomPublication
|