Converted to maven
7
.gitignore
vendored
|
@ -5,11 +5,8 @@
|
||||||
# Ignore project resources
|
# Ignore project resources
|
||||||
main-gdxapp-desktop/warpcore.xml
|
main-gdxapp-desktop/warpcore.xml
|
||||||
|
|
||||||
# Ignore gradle resources
|
# Ignore maven resources
|
||||||
bin
|
target
|
||||||
build
|
|
||||||
.gitignore
|
|
||||||
.gradle
|
|
||||||
|
|
||||||
# Ignore npm resources
|
# Ignore npm resources
|
||||||
node_modules
|
node_modules
|
||||||
|
|
BIN
.gradle/7.3.3/checksums/checksums.lock
Normal file
BIN
.gradle/7.3.3/checksums/md5-checksums.bin
Normal file
BIN
.gradle/7.3.3/checksums/sha1-checksums.bin
Normal file
BIN
.gradle/7.3.3/dependencies-accessors/dependencies-accessors.lock
Normal file
0
.gradle/7.3.3/dependencies-accessors/gc.properties
Normal file
BIN
.gradle/7.3.3/executionHistory/executionHistory.lock
Normal file
BIN
.gradle/7.3.3/fileChanges/last-build.bin
Normal file
BIN
.gradle/7.3.3/fileHashes/fileHashes.lock
Normal file
0
.gradle/7.3.3/gc.properties
Normal file
BIN
.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
2
.gradle/buildOutputCleanup/cache.properties
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#Sat Feb 26 00:47:35 CET 2022
|
||||||
|
gradle.version=7.3.3
|
0
.gradle/vcs-1/gc.properties
Normal file
125
build.gradle
|
@ -1,125 +0,0 @@
|
||||||
buildscript {
|
|
||||||
repositories {
|
|
||||||
mavenLocal()
|
|
||||||
mavenCentral()
|
|
||||||
gradlePluginPortal()
|
|
||||||
}
|
|
||||||
dependencies {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
allprojects {
|
|
||||||
apply plugin: "eclipse"
|
|
||||||
version = '1.0'
|
|
||||||
ext {
|
|
||||||
appJvmCode = 11
|
|
||||||
appEncoding = "UTF-8"
|
|
||||||
x4oVersion = "0.8.6"
|
|
||||||
gdxVersion = "1.10.0"
|
|
||||||
spairVersion = "1.86.0"
|
|
||||||
nativefilechooserVersion = "1.0.0"
|
|
||||||
junitVersion = "5.7.2"
|
|
||||||
}
|
|
||||||
repositories {
|
|
||||||
mavenLocal()
|
|
||||||
mavenCentral {
|
|
||||||
metadataSources {
|
|
||||||
mavenPom()
|
|
||||||
artifact()
|
|
||||||
ignoreGradleMetadataRedirection()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-bassboonyd") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-warpme") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-bassboonyd")
|
|
||||||
api files('../gradle-libs/x4o-driver-0.8.7-SNAPSHOT.jar')
|
|
||||||
api files('../gradle-libs/jasper-el-6.0.20.jar')
|
|
||||||
api files('../gradle-libs/el-api-6.0.20.jar')
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-numberxd") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-warpme")
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-unicodezd") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-numberxd")
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-basicwd") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-unicodezd")
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":lib-imxmi") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-basicwd")
|
|
||||||
api "io.github.spair:imgui-java-binding:$spairVersion"
|
|
||||||
api "io.github.spair:imgui-java-lwjgl3:$spairVersion"
|
|
||||||
api "io.github.spair:imgui-java-natives-linux:$spairVersion"
|
|
||||||
api "io.github.spair:imgui-java-natives-macos:$spairVersion"
|
|
||||||
api "io.github.spair:imgui-java-natives-windows:$spairVersion"
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
||||||
}
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":main-gdxapp") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
api project(":lib-imxmi")
|
|
||||||
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
||||||
api "games.spooky.gdx:gdx-nativefilechooser:$nativefilechooserVersion"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
project(":main-gdxapp-desktop") {
|
|
||||||
apply plugin: "java-library"
|
|
||||||
dependencies {
|
|
||||||
implementation project(":main-gdxapp")
|
|
||||||
api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
|
|
||||||
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
||||||
api "games.spooky.gdx:gdx-nativefilechooser-desktop:$nativefilechooserVersion"
|
|
||||||
}
|
|
||||||
}
|
|
28
gdxapp4d-boot/gdxapp4d-boot-desktop/pom.xml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-boot</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<artifactId>gdxapp4d-boot-desktop</artifactId>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-boot-tos4</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.badlogicgames.gdx</groupId>
|
||||||
|
<artifactId>gdx-backend-lwjgl3</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.badlogicgames.gdx</groupId>
|
||||||
|
<artifactId>gdx-platform</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>games.spooky.gdx</groupId>
|
||||||
|
<artifactId>gdx-nativefilechooser-desktop</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
39
gdxapp4d-boot/gdxapp4d-boot-tos4/pom.xml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-boot</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<artifactId>gdxapp4d-boot-tos4</artifactId>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-lib-bassboonyd</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-lib-numberxd</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-lib-unicodezd</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-lib-imxmi</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.badlogicgames.gdx</groupId>
|
||||||
|
<artifactId>gdx</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>games.spooky.gdx</groupId>
|
||||||
|
<artifactId>gdx-nativefilechooser</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 373 KiB |
Before Width: | Height: | Size: 315 KiB After Width: | Height: | Size: 315 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 249 KiB After Width: | Height: | Size: 249 KiB |
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
14
gdxapp4d-boot/pom.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<artifactId>gdxapp4d-boot</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<modules>
|
||||||
|
<module>gdxapp4d-boot-desktop</module>
|
||||||
|
<module>gdxapp4d-boot-tos4</module>
|
||||||
|
</modules>
|
||||||
|
</project>
|
10
gdxapp4d-chain/pom.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<artifactId>gdxapp4d-chain</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
</project>
|
9
gdxapp4d-lib/gdxapp4d-lib-basicwd/pom.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
||||||
|
<artifactId>gdxapp4d-lib</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<artifactId>gdxapp4d-lib-basicwd</artifactId>
|
||||||
|
</project>
|