Skip to content

Commit a135d65

Browse files
committed
spamming includeGroup and single quote
1 parent d5164bc commit a135d65

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

common.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ apply plugin: 'me.fallenbreath.yamlang'
1010
repositories {
1111
maven {
1212
url = 'https://maven.parchmentmc.org'
13+
content { includeGroup('org.parchmentmc.data') }
1314
}
1415
maven {
1516
url = 'https://jitpack.io'
17+
content { includeGroupAndSubgroups('com.github') }
1618
}
1719
maven {
1820
url = 'https://maven.fallenbreath.me/releases'
21+
content { includeGroup('me.fallenbreath') }
1922
}
2023
}
2124

settings.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ pluginManagement {
99
maven {
1010
name = 'Jitpack'
1111
url = 'https://jitpack.io'
12+
content { includeGroupAndSubgroups('com.github') }
1213
}
1314
mavenCentral()
1415
gradlePluginPortal()
1516
}
1617
resolutionStrategy {
1718
eachPlugin {
1819
switch (requested.id.id) {
19-
case "com.replaymod.preprocess": {
20+
case 'com.replaymod.preprocess': {
2021
useModule("com.github.Fallen-Breath:preprocessor:${requested.version}")
2122
break
2223
}
@@ -31,5 +32,5 @@ for (String version : settings.versions) {
3132

3233
def proj = project(":$version")
3334
proj.projectDir = file("versions/$version")
34-
proj.buildFileName = "../../common.gradle"
35+
proj.buildFileName = '../../common.gradle'
3536
}

0 commit comments

Comments
 (0)