Skip to content

xpdustry/arc-lite

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2,254 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arc framework without client related things and with bug fixes and new features.

Intended use is to be included in standalone server applications as a small and optimized utility framework.

Usage

First, add our repository to your gradle build script:

repositories {
  maven { url 'https://maven.xpdustry.com/releases' }
}

Add the framework to your project dependencies (the versioning is the same as Arc):

dependencies {
  implementation 'com.xpdustry:arc-lite:v152.2'
}

And you can use the API the same way as Arc. The main package is arc.


Optionally, to be able to get colors on Windows consoles (e.g. the cmd), you'll need to include some libraries to your project dependencies:

dependencies {
  implementation "org.fusesource.jansi:jansi-native:1.1"
  implementation "org.fusesource.jansi:jansi-native:1.1:windows32"
  implementation "org.fusesource.jansi:jansi-native:1.1:windows64"
}

It's also recommended to "minimize" your project using the gradleup's shadow plugin.
This will remove everything that is not used by your project, making it smaller.

Changes

Modified source structure to match a classic Gradle project.
Removed natives/ libraries.

Removed backends

Merged headless backend to main source.

Removed extensions

Merged arcnet extension to main source.

Removed packages and classes

Moved arc.graphics.g2d.PixmapRegion to arc.graphics.

Removed classes warnings
Modified classes
Added features

About

Arc framework without client related things

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Java 100.0%