Skip to content

Commit 0e04763

Browse files
committed
Fix buildscript
1 parent 1b71685 commit 0e04763

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ plugins {
1111
version = project.mod_version
1212
group = project.maven_group
1313

14-
def ENV = System.getenv();
15-
1614
repositories {
1715
mavenCentral()
1816

@@ -128,8 +126,8 @@ jacocoTestReport {
128126

129127
sonar {
130128
properties {
131-
property "sonar.host.url", ENV.SONAR_URL
132-
property "sonar.token", ENV.SONAR_TOKEN
129+
property "sonar.host.url", System.getenv("SONAR_URL")
130+
property "sonar.token", System.getenv("SONAR_TOKEN")
133131
}
134132
}
135133

src/test/java/io/github/fabriccompatibiltylayers/modremappingapi/test/ModRemapperTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77
import org.junit.jupiter.api.Test;
88

99
public class ModRemapperTests {
10-
11-
@BeforeAll
12-
static void beforeAll() {
13-
// MixinBootstrap.init();
14-
}
15-
1610
@Test
1711
public void differentSourceNamespace() {
1812
Assertions.assertEquals(

0 commit comments

Comments
 (0)