Skip to content

Commit

Permalink
Update gradle build script
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Oct 30, 2023
1 parent b4531ac commit 1ad189a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ plugins {
}

compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8

version = '1.0.5-RELEASE'

Expand All @@ -25,6 +23,11 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

jar {
archiveBaseName = 'jpass'
archiveVersion = "$project.version"
Expand Down

0 comments on commit 1ad189a

Please sign in to comment.