Skip to content

Commit

Permalink
Revert "Remove gradle warnings"
Browse files Browse the repository at this point in the history
This reverts commit 6e9c262.
  • Loading branch information
ghokun committed May 6, 2024
1 parent 6e9c262 commit 0ce4fd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
9 changes: 3 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {

group = "dev.gokhun"

def generatedSources = "${layout.buildDirectory}/generated"
def generatedSources = "${buildDir}/generated"
def taskGroup = "convert"
def os = org.gradle.internal.os.OperatingSystem.current()
def osName = os.isMacOsX() ? os.getNativePrefix() : os.getFamilyName()
Expand Down Expand Up @@ -83,9 +83,6 @@ dependencies {

application {
mainClass = "dev.gokhun.convert.Convert"
}

java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
Expand Down Expand Up @@ -113,10 +110,10 @@ tasks.register("copyBinaries", Copy) {
group = taskGroup
mustRunAfter("nativeCompile")

def binDir = file("${layout.buildDirectory}/native/${archiveName}/bin/")
def binDir = file("${buildDir}/native/${archiveName}/bin/")
binDir.parentFile.mkdirs()

from "${layout.buildDirectory}/native/nativeCompile/convert"
from "${buildDir}/native/nativeCompile/convert"
into binDir
}

Expand Down

This file was deleted.

0 comments on commit 0ce4fd9

Please sign in to comment.