-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e73990
commit 07ff185
Showing
20 changed files
with
319 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
apply plugin: 'net.twisterrob.gradle.plugin.java' | ||
plugins { | ||
id("net.twisterrob.blt.convention") | ||
id("org.gradle.java") | ||
id("net.twisterrob.gradle.plugin.java") | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
sourceCompatibility = libs.versions.java.asProvider().get() | ||
targetCompatibility = libs.versions.java.asProvider().get() | ||
} | ||
|
||
dependencies { | ||
implementation 'net.sf.kxml:kxml2:2.3.0' | ||
implementation(libs.kxml2) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
apply plugin: 'java-library' | ||
apply plugin: 'net.twisterrob.gradle.plugin.java' | ||
plugins { | ||
id("net.twisterrob.blt.convention") | ||
id("org.gradle.java-library") | ||
id("net.twisterrob.gradle.plugin.java") | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
sourceCompatibility = libs.versions.java.asProvider().get() | ||
targetCompatibility = libs.versions.java.asProvider().get() | ||
} | ||
|
||
// <name>Better London Travel Shared</name> | ||
// <description>Shared model and surrounding classes</description> | ||
//name = 'twister-travel-shared' | ||
version = '0.0.1-SNAPSHOT' | ||
//name = "twister-travel-shared" | ||
version = "0.0.1-SNAPSHOT" | ||
dependencies { | ||
api('net.twisterrob.lib:twister-lib-general') | ||
api('net.twisterrob.lib:twister-lib-core') | ||
api("net.twisterrob.lib:twister-lib-general") | ||
api("net.twisterrob.lib:twister-lib-core") | ||
|
||
implementation("com.google.code.findbugs:jsr305:${VERSION_JSR305}") | ||
implementation("org.slf4j:slf4j-api:${VERSION_SLF4J}") | ||
implementation project(':Shared:android-polyfill') | ||
implementation('net.twisterrob.lib:twister-lib-java_desktop') | ||
implementation(libs.jsr305) | ||
implementation(libs.slf4j.api) | ||
implementation(projects.shared.androidPolyfill) | ||
implementation("net.twisterrob.lib:twister-lib-java_desktop") | ||
|
||
apply from: "${rootDir}/gradle/testCompile.gradle", to: project | ||
testImplementation(projects.shared.testHelpers) | ||
} |
Oops, something went wrong.