Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.AppliedEnergistics:Applied-Energistics-2:rv6.stable.7'
}
dependencies {
implementation("com.github.AppliedEnergistics:Applied-Energistics-2:rv6.stable.7")
}
<dependency>
<groupId>com.github.AppliedEnergistics</groupId>
<artifactId>Applied-Energistics-2</artifactId>
<version>rv6.stable.7</version>
</dependency>
libraryDependencies += "com.github.AppliedEnergistics" % "Applied-Energistics-2" % "rv6.stable.7"
:dependencies [[com.github.AppliedEnergistics/Applied-Energistics-2 "rv6.stable.7"]]
A Minecraft mod about Matter, Energy and using them to conquer the world...
Downloads can be found on CurseForge, Modrinth or on the official website.
You install this mod by putting it into the minecraft/mods/
folder. It has no additional hard dependencies.
Applied Energistics 2 crashing, have a suggestion, found a bug? Create an issue now!
Submit New Issue
, and wait for feedback!Providing as many details as possible does help us to find and resolve the issue faster and also you getting a fixed version as fast as possible.
Please note that we might close any issue not matching these requirements.
The API for Applied Energistics 2. It is open source to discuss changes, improve documentation, and provide better add-on support in general.
AE2 is available on Maven Central.
You can use the following snippet as example on how to add a repository to your gradle build file.
repositories {
mavenCentral()
}
We are also available on Github Packages, which you can also use in your builds. Use of Github Packages requires special setup to authenticate with your personal access token.
When compiling against the AE2 API you can use gradle dependencies, just add
dependencies {
compileOnly "org.appliedenergistics:appliedenergistics2:VERSION:api"
}
or add the compileOnly
line to your existing dependencies block to your build.gradle.
Replace VERSION
with the desired one. With 1.15+ we switched to using semver.
It is highly recommended following its specification and further considering an upper bound for the dependency version.
A change of the MAJOR
version will be an API break and can lead to various crashes. Better to inform a player about the addon not supporting the new version until it could be tested or updated.
An example string would be org.appliedenergistics:appliedenergistics2:12.9.5:api
for the API only or org.appliedenergistics:appliedenergistics2:12.9.5
for the whole mod.
git clone git@github.com:AppliedEnergistics/Applied-Energistics-2.git
orgit clone https://github.com/AppliedEnergistics/Applied-Energistics-2.git
gradlew runData build
command. Jar will be in build/libs
Before you want to add major changes, you might want to discuss them with us first, before wasting your time. If you are still willing to contribute to this project, you can contribute via Pull-Request.
The guidelines for contributing contain more detailed information about topics like the used code style and should also be considered.
Here are a few things to keep in mind that will help get your PR approved.
Getting Started
git clone git@github.com:<your username>/Applied-Energistics-2.git
orgit clone https://github.com/<your username>/Applied-Energistics-2.git
gradlew spotlessApply
to apply automatic code formattinggit add -A
git commit -m "<summary of made changes>"
git push
If you are only doing single file pull requests, GitHub supports using a quick way without the need of cloning your fork. Also read up about synching if you plan to contribute on regular basis.
en_US
is included in this repository, fixes to typos are welcome.
Files must be encoded as UTF-8.
We use Crowdin crowd-sourced translations for our localization. You can participate in localizing Applied Energistics 2 on our Crowdin Page.
Please keep in mind that we use String format to pass additional data to the text for displaying.
Therefore you should preserve parts like %s
or %1$d%%
, which allows us to replace them with the correct values while you still have the option to change their order for match the rules of grammar.
This might not be possible for some languages. Should this be the case, please contact us.
If you have issues localizing something, feel free to contact us on Discord.
Thanks to everyone helping out to improve localization of AE2.
Thanks to all of our contributors!