Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjii79 committed Dec 13, 2023
1 parent c2ed038 commit c3f6c13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/kdb-java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: project(":").file('gradle/java_no_style.gradle')
apply from: project(":").file('gradle/java_8_no_style.gradle')

dependencies {
implementation group: 'com.google.code.gson', name: 'gson'
Expand Down
9 changes: 9 additions & 0 deletions gradle/java_8_no_style.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Defines shared aspects of a Gradle Java module without style/format checking.
//
// NOTE: Only use with a good reason to, e.g., for vendored code. Otherwise, please prefer `gradle/java.gradle`.

apply plugin: 'java'
apply from: project(":").file('gradle/mixins/dependencies.gradle')

sourceCompatibility = 1.8
targetCompatibility = 1.8
2 changes: 1 addition & 1 deletion kdb-mojo-scorer/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.github.johnrengelman.shadow'
}
apply from: project(":").file('gradle/java_no_style.gradle')
apply from: project(":").file('gradle/java_8_no_style.gradle')

dependencies {
implementation project(':common:kdb-java')
Expand Down

0 comments on commit c3f6c13

Please sign in to comment.