Skip to content

Commit 7a88aa6

Browse files
authored
Merge pull request quarkusio#36354 from beikov/orm-update
Allow ORM dependencies in mavenLocal for Gradle tests
2 parents 61d3986 + 8e4b9fa commit 7a88aa6

File tree

204 files changed

+235
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+235
-16
lines changed

integration-tests/gradle/src/main/resources/add-envitonment-variables-app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ repositories {
1010
mavenLocal {
1111
content {
1212
includeGroupByRegex 'io.quarkus.*'
13+
includeGroup 'org.hibernate.orm'
1314
}
1415
}
1516
mavenCentral()

integration-tests/gradle/src/main/resources/add-envitonment-variables-app/settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
mavenLocal {
44
content {
55
includeGroupByRegex 'io.quarkus.*'
6+
includeGroup 'org.hibernate.orm'
67
}
78
}
89
mavenCentral()

integration-tests/gradle/src/main/resources/add-extension-multi-module-kts/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ buildscript {
44
mavenLocal {
55
content {
66
includeGroupByRegex("io.quarkus.*")
7+
includeGroup("org.hibernate.orm")
78
}
89
}
910
mavenCentral()
@@ -42,6 +43,7 @@ subprojects {
4243
mavenLocal {
4344
content {
4445
includeGroupByRegex("io.quarkus.*")
46+
includeGroup("org.hibernate.orm")
4547
}
4648
}
4749
mavenCentral()

integration-tests/gradle/src/main/resources/add-extension-multi-module-kts/settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pluginManagement {
44
mavenLocal {
55
content {
66
includeGroupByRegex("io.quarkus.*")
7+
includeGroup("org.hibernate.orm")
78
}
89
}
910
mavenCentral()

integration-tests/gradle/src/main/resources/add-extension-multi-module/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ buildscript {
44
mavenLocal {
55
content {
66
includeGroupByRegex 'io.quarkus.*'
7+
includeGroup 'org.hibernate.orm'
78
}
89
}
910
mavenCentral()
@@ -38,6 +39,7 @@ subprojects {
3839
mavenLocal {
3940
content {
4041
includeGroupByRegex 'io.quarkus.*'
42+
includeGroup 'org.hibernate.orm'
4143
}
4244
}
4345
mavenCentral()

integration-tests/gradle/src/main/resources/add-extension-multi-module/settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
mavenLocal {
44
content {
55
includeGroupByRegex 'io.quarkus.*'
6+
includeGroup 'org.hibernate.orm'
67
}
78
}
89
mavenCentral()

integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ repositories {
77
mavenLocal {
88
content {
99
includeGroupByRegex("io.quarkus.*")
10+
includeGroup("org.hibernate.orm")
1011
}
1112
}
1213
mavenCentral()

integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pluginManagement {
44
mavenLocal {
55
content {
66
includeGroupByRegex("io.quarkus.*")
7+
includeGroup("org.hibernate.orm")
78
}
89
}
910
mavenCentral()

integration-tests/gradle/src/main/resources/add-remove-extension-single-module/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ repositories {
77
mavenLocal {
88
content {
99
includeGroupByRegex 'io.quarkus.*'
10+
includeGroup 'org.hibernate.orm'
1011
}
1112
}
1213
mavenCentral()

integration-tests/gradle/src/main/resources/add-remove-extension-single-module/settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
mavenLocal {
44
content {
55
includeGroupByRegex 'io.quarkus.*'
6+
includeGroup 'org.hibernate.orm'
67
}
78
}
89
mavenCentral()

0 commit comments

Comments
 (0)