Skip to content

Commit

Permalink
wip noisetool update
Browse files Browse the repository at this point in the history
  • Loading branch information
duplexsystem committed Dec 9, 2023
1 parent 66592a0 commit 3052767
Show file tree
Hide file tree
Showing 6 changed files with 268 additions and 224 deletions.
37 changes: 23 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,34 +1,39 @@
plugins {
java
id("com.github.johnrengelman.shadow").version("6.1.0")
id("com.github.johnrengelman.shadow").version("8.1.1")
}

group = "com.dfsek"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
maven {
url = uri("https://repo.codemc.io/repository/maven-public/")
name = "CodeMC"
url = uri("https://repo.codemc.org/repository/maven-public/")
}
maven {
name = "Jitpack"
url = uri("https://jitpack.io")
}
}

dependencies {
testImplementation("junit", "junit", "4.12")
implementation("com.dfsek.terra:base:6.0.0-BETA+42fb3642f")
compileOnly("org.jetbrains:annotations:23.0.0")
implementation("commons-io:commons-io:2.11.0")
implementation("com.google.guava:guava:31.1-jre")
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.10.1")
implementation("com.dfsek.terra:base:6.4.1-BETA+3aef97738")
compileOnly("org.jetbrains:annotations:24.1.0")
implementation("commons-io:commons-io:2.15.1")
implementation("com.google.guava:guava:32.1.3-jre")

implementation("com.dfsek.tectonic", "yaml", "4.2.0")
implementation("ch.qos.logback:logback-classic:1.2.11")
implementation("com.dfsek.tectonic", "yaml", "4.2.1")
implementation("ch.qos.logback:logback-classic:1.4.14")


implementation("com.fifesoft:rstaui:3.2.0")
implementation("com.fifesoft:rsyntaxtextarea:3.2.0")
implementation("com.fifesoft:autocomplete:3.2.0")
implementation("com.fifesoft:rstaui:3.3.1")
implementation("com.fifesoft:rsyntaxtextarea:3.3.4")
implementation("com.fifesoft:autocomplete:3.3.1")

implementation("com.formdev:flatlaf:2.1")
implementation("com.formdev:flatlaf:3.2.5")
}


Expand All @@ -38,6 +43,10 @@ val jar by tasks.getting(Jar::class) {
}
}

tasks.build {
dependsOn(tasks.named("shadowJar"))
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
distributionSha256Sum=9d926787066a081739e8200858338b4a69e837c3a821a33aca9db09dd4a41026
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 3052767

Please sign in to comment.