Skip to content

Commit

Permalink
Fix buildscript
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Oct 28, 2024
1 parent 1b71685 commit 0e04763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ plugins {
version = project.mod_version
group = project.maven_group

def ENV = System.getenv();

repositories {
mavenCentral()

Expand Down Expand Up @@ -128,8 +126,8 @@ jacocoTestReport {

sonar {
properties {
property "sonar.host.url", ENV.SONAR_URL
property "sonar.token", ENV.SONAR_TOKEN
property "sonar.host.url", System.getenv("SONAR_URL")
property "sonar.token", System.getenv("SONAR_TOKEN")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@
import org.junit.jupiter.api.Test;

public class ModRemapperTests {

@BeforeAll
static void beforeAll() {
// MixinBootstrap.init();
}

@Test
public void differentSourceNamespace() {
Assertions.assertEquals(
Expand Down

0 comments on commit 0e04763

Please sign in to comment.