-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reforged model handling features, uploading amidst catastrophic syste…
…m failure
- Loading branch information
Retera
committed
Nov 9, 2019
1 parent
4b50447
commit a695b1c
Showing
192 changed files
with
50,541 additions
and
47,713 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
flatDir { | ||
dirs "$rootProject.projectDir/jars" | ||
} | ||
mavenCentral() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
jcenter() | ||
} | ||
} | ||
|
||
allprojects { | ||
apply plugin: "eclipse" | ||
apply plugin: "idea" | ||
|
||
version = '1.0' | ||
ext { | ||
appName = "retera-jwc3" | ||
jtattooVersion = '1.6.11' | ||
xstreamVersion = '1.4.9' | ||
miglayoutVersion = '4.2' | ||
lwjglVersion = '2.9.3' | ||
image4jVersion = '0.7' | ||
rsyntaxtextareaVersion = '3.0.2' | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/releases/" } | ||
} | ||
} | ||
|
||
project(":matrixeater") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile project(":craft3editor") | ||
compile "com.fifesoft:rsyntaxtextarea:$rsyntaxtextareaVersion" | ||
} | ||
} | ||
|
||
project(":disarm") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile project(":craft3editor") | ||
compile project(":matrixeater") | ||
} | ||
} | ||
|
||
project(":craft3editor") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile "org.jclarion:image4j:$image4jVersion" | ||
} | ||
} | ||
|
||
project(":craft3data") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile "com.jtattoo:JTattoo:$jtattooVersion" | ||
compile "com.miglayout:miglayout-swing:$miglayoutVersion" | ||
compile "org.lwjgl:lwjgl:${lwjglVersion}" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-windows" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-linux" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-osx" | ||
compile "org.lwjgl.lwjgl:lwjgl_util:${lwjglVersion}" | ||
// compile "com.github.ebourg:infonode:master" | ||
// compile "com.github.DrSuperGood:blp-iio-plugin:master" | ||
compile files(fileTree(dir:'../jars', includes: ['*.jar'])) | ||
} | ||
} | ||
|
||
tasks.eclipse.doLast { | ||
delete ".project" | ||
} | ||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
flatDir { | ||
dirs "$rootProject.projectDir/jars" | ||
} | ||
mavenCentral() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
jcenter() | ||
} | ||
} | ||
|
||
allprojects { | ||
apply plugin: "eclipse" | ||
apply plugin: "idea" | ||
|
||
version = '1.0' | ||
ext { | ||
appName = "retera-jwc3" | ||
jtattooVersion = '1.6.11' | ||
xstreamVersion = '1.4.9' | ||
miglayoutVersion = '4.2' | ||
lwjglVersion = '2.9.3' | ||
image4jVersion = '0.7' | ||
rsyntaxtextareaVersion = '3.0.2' | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/releases/" } | ||
} | ||
} | ||
|
||
project(":matrixeater") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile project(":craft3editor") | ||
compile "com.fifesoft:rsyntaxtextarea:$rsyntaxtextareaVersion" | ||
} | ||
} | ||
|
||
project(":disarm") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile project(":craft3editor") | ||
compile project(":matrixeater") | ||
} | ||
} | ||
|
||
project(":craft3editor") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile project(":craft3data") | ||
compile "org.jclarion:image4j:$image4jVersion" | ||
} | ||
} | ||
|
||
project(":craft3data") { | ||
apply plugin: "java" | ||
|
||
|
||
dependencies { | ||
compile "com.jtattoo:JTattoo:$jtattooVersion" | ||
compile "com.miglayout:miglayout-swing:$miglayoutVersion" | ||
compile "org.lwjgl:lwjgl:${lwjglVersion}" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-windows" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-linux" | ||
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-osx" | ||
compile "org.lwjgl.lwjgl:lwjgl_util:${lwjglVersion}" | ||
// compile "com.github.ebourg:infonode:master" | ||
// compile "com.github.DrSuperGood:blp-iio-plugin:master" | ||
compile files(fileTree(dir:'../jars', includes: ['*.jar'])) | ||
} | ||
} | ||
|
||
tasks.eclipse.doLast { | ||
delete ".project" | ||
} |
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,15 +1,15 @@ | ||
apply plugin: "java" | ||
|
||
sourceCompatibility = 1.8 | ||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | ||
|
||
sourceSets.main.java.srcDirs = [ "src/" ] | ||
|
||
|
||
eclipse.project { | ||
name = appName + "-craft3data" | ||
} | ||
//dependencies { | ||
// compile(name: 'idw-gpl', ext:'jar') | ||
// compile(name: 'blp-iio-plugin', ext:'jar') | ||
//} | ||
apply plugin: "java" | ||
|
||
sourceCompatibility = 1.8 | ||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | ||
|
||
sourceSets.main.java.srcDirs = [ "src/" ] | ||
|
||
|
||
eclipse.project { | ||
name = appName + "-craft3data" | ||
} | ||
//dependencies { | ||
// compile(name: 'idw-gpl', ext:'jar') | ||
// compile(name: 'blp-iio-plugin', ext:'jar') | ||
//} |
Oops, something went wrong.