HHH-5616 - Switch to Gradle for builds .. incorrect .gitignore
This commit is contained in:
parent
2443fede65
commit
bea71a4562
20
build.gradle
20
build.gradle
|
@ -88,7 +88,7 @@ subprojects { subProject ->
|
||||||
if ( ! subProject.name.startsWith( 'hibernate-release' ) ) {
|
if ( ! subProject.name.startsWith( 'hibernate-release' ) ) {
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'maven' // for install task as well as deploy dependencies
|
apply plugin: 'maven' // for install task as well as deploy dependencies
|
||||||
apply plugin: org.hibernate.build.gradle.upload.UploadManager
|
// apply plugin: org.hibernate.build.gradle.upload.UploadManager
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
provided {
|
provided {
|
||||||
|
@ -205,15 +205,15 @@ subprojects { subProject ->
|
||||||
name = 'jbossDeployer'
|
name = 'jbossDeployer'
|
||||||
configuration = configurations.deployerJars
|
configuration = configurations.deployerJars
|
||||||
pom.project pomConfig
|
pom.project pomConfig
|
||||||
repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/")
|
// repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/")
|
||||||
snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots")
|
// snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots")
|
||||||
// credentials = [userName: JBOSS_NEXUS_USERNAME, password: JBOSS_NEXUS_PASSWORD]
|
credentials = [userName: JBOSS_NEXUS_USERNAME, password: JBOSS_NEXUS_PASSWORD]
|
||||||
// repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/") {
|
repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/") {
|
||||||
// authentication(credentials)
|
authentication(credentials)
|
||||||
// }
|
}
|
||||||
// snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots") {
|
snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots") {
|
||||||
// authentication(credentials)
|
authentication(credentials)
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue