Skip to content

Commit e640e98

Browse files
committed
fix buildscript
1 parent 57218bf commit e640e98

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

de.peeeq.wurstscript/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ plugins {
1313
id 'idea'
1414
id 'jacoco'
1515
id 'maven-publish'
16-
id 'com.github.kt3k.coveralls' version '2.12.2'
1716
id 'com.gradleup.shadow' version '9.2.2'
1817
id 'de.undercouch.download' version '5.6.0'
1918
}
Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
rootProject.name = 'wurstscript'
1+
pluginManagement {
2+
repositories {
3+
maven { url = uri("https://cache-redirector.jetbrains.com/plugins.gradle.org/m2") }
4+
gradlePluginPortal()
5+
maven { url = uri("https://plugins.gradle.org/m2") }
6+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
7+
mavenCentral()
8+
}
9+
}
10+
11+
dependencyResolutionManagement {
12+
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
13+
repositories {
14+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
15+
mavenCentral()
16+
google()
17+
maven { url 'https://jitpack.io' }
18+
}
19+
}
20+
21+
rootProject.name = 'wurstscript'
22+

0 commit comments

Comments
 (0)