Skip to content

Commit

Permalink
env variables now override predefined values
Browse files Browse the repository at this point in the history
Signed-off-by: Human Ardaki <[email protected]>
  • Loading branch information
nort3x committed Nov 30, 2021
1 parent 6de1ebf commit 349aa41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,19 @@ allprojects {
mavenCentral()
}
}
apply plugin: 'maven'

sourceCompatibility = "11"
targetCompatibility = "11"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

group 'me.nort3x'
version '2.1.2'



dependencies {
implementation 'net.oneandone.reflections8:reflections8:0.11.5'
implementation 'org.slf4j:slf4j-api:1.7.25'
compile 'net.oneandone.reflections8:reflections8:0.11.5'
compile 'org.slf4j:slf4j-api:1.7.25'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
Expand Down Expand Up @@ -48,6 +49,6 @@ artifacts {


wrapper {
gradleVersion = "7.0.2"
gradleVersion = "6.1.1"
distributionType = Wrapper.DistributionType.ALL
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 349aa41

Please sign in to comment.