2018-01-17 23:47:31 -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
|
|
|
|
*/
|
2018-01-22 12:43:16 -05:00
|
|
|
|
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
|
2020-04-02 10:39:35 -04:00
|
|
|
// Disable Gradle module metadata publishing until we know what we want.
|
|
|
|
// https://docs.gradle.org/6.0.1/userguide/publishing_gradle_module_metadata.html#sub:disabling-gmm-publication
|
|
|
|
tasks.withType(GenerateModuleMetadata) {
|
|
|
|
enabled = false
|
|
|
|
}
|
2018-01-17 23:47:31 -05:00
|
|
|
|
2018-06-13 05:46:15 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
2021-05-14 15:59:59 -04:00
|
|
|
publishedArtifacts( MavenPublication ) {
|
2018-06-13 05:46:15 -04:00
|
|
|
pom {
|
|
|
|
name = 'Hibernate ORM - ' + project.name
|
|
|
|
description = project.description
|
2021-06-02 17:14:23 -04:00
|
|
|
url = 'https://hibernate.org/orm'
|
2018-01-17 23:47:31 -05:00
|
|
|
|
|
|
|
organization {
|
2018-06-13 05:46:15 -04:00
|
|
|
name = 'Hibernate.org'
|
2021-06-02 17:14:23 -04:00
|
|
|
url = 'https://hibernate.org'
|
2018-01-17 23:47:31 -05:00
|
|
|
}
|
2018-06-13 05:46:15 -04:00
|
|
|
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name = 'GNU Library General Public License v2.1 or later'
|
2021-06-02 17:14:23 -04:00
|
|
|
url = 'https://www.opensource.org/licenses/LGPL-2.1'
|
|
|
|
comments = 'See discussion at https://hibernate.org/community/license/ for more details.'
|
2018-06-13 05:46:15 -04:00
|
|
|
distribution = 'repo'
|
|
|
|
}
|
2018-01-17 23:47:31 -05:00
|
|
|
}
|
2018-06-13 05:46:15 -04:00
|
|
|
|
2018-01-17 23:47:31 -05:00
|
|
|
scm {
|
2021-06-02 17:14:23 -04:00
|
|
|
url = 'https://github.com/hibernate/hibernate-orm'
|
|
|
|
connection = 'scm:git:https://github.com/hibernate/hibernate-orm.git'
|
2018-06-13 05:46:15 -04:00
|
|
|
developerConnection = 'scm:git:git@github.com:hibernate/hibernate-orm.git'
|
2018-01-17 23:47:31 -05:00
|
|
|
}
|
2018-06-13 05:46:15 -04:00
|
|
|
|
|
|
|
issueManagement {
|
|
|
|
system = 'jira'
|
|
|
|
url = 'https://hibernate.atlassian.net/browse/HHH'
|
|
|
|
}
|
|
|
|
|
2018-01-17 23:47:31 -05:00
|
|
|
developers {
|
|
|
|
developer {
|
2018-06-13 05:46:15 -04:00
|
|
|
id = 'hibernate-team'
|
|
|
|
name = 'The Hibernate Development Team'
|
|
|
|
organization = 'Hibernate.org'
|
2021-06-02 17:14:23 -04:00
|
|
|
organizationUrl = 'https://hibernate.org'
|
2018-01-17 23:47:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-06-13 05:46:15 -04:00
|
|
|
|
2018-01-17 23:47:31 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-13 05:46:15 -04:00
|
|
|
|
|
|
|
}
|