Skip to content

Commit

Permalink
fix galacticraft version dep issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ROMVoid95 committed Apr 4, 2020
1 parent 8364b35 commit 6bdf5f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,20 @@ compileJava {

repositories {
maven { url 'https://jitpack.io' }
maven { url 'http://host.terranetichosting.com:8081/repository/maven-releases/' }
mavenLocal()
jcenter()
mavenCentral()
}

dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile 'com.github.ronmamo:reflections:21959e6e'
compile 'net.romvoid.libs:readonlycore:1.0.5'

compile files (
"lib/Galacticraft-API-1.12.2-${gcversion}.jar",
"lib/GalacticraftCore-Dev-1.12.2-${gcversion}.jar",
"lib/Galacticraft-Planets-Dev-1.12.2-${gcversion}.jar",
"lib/MicdoodleCore-Dev-1.12.2-${gcversion}.jar",
"lib/ReadOnlyCore-1.12.2-1.0.5.jar",
)

}
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ forge_version=14.23.5.2847
mcVersion =1.12.2
versionMajor =0
versionMinor =0
versionRev =1
gcversion=4.0.2.238
versionRev =2
gcversion=4.0.2.244


#Cursforge Project ID (Required)
Expand All @@ -27,7 +27,7 @@ cf_versions=1.12.2
#Whether to use a custom display name on artifacts
cf_use_custom_display_name=false
#List of required dependencies (comma separated list)
#cf_requirements =
cf_requirements =readonlycore
#List of optional dependencies (comma separated list)
#cf_optionals =
#List of embedded dependencies (comma separated list)
Expand All @@ -53,6 +53,6 @@ create_source_jar=false
#Create an API jar?
create_api_jar=false
#Create a deobf jar?
create_deobf_jar=false
create_deobf_jar=true
#Create a javadoc jar?
create_javadoc_jar=false
2 changes: 1 addition & 1 deletion src/main/java/net/rom/stellar/Exoplanets.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Exoplanets implements IMod {
public static final String VERSION = "${version}";
public static final String ACCEPTED_MC_VERSIONS = "[1.12.2]";
public static final String ACCEPTED_MC_VERSION = ForgeVersion.mcVersion;
public static final String DEPENDENCIES_MODS = "required-after:readonlycore; required-after:galacticraftcore@[4.0.2.237,); required-after:galacticraftplanets@[4.0.2.237,);";
public static final String DEPENDENCIES_MODS = "required-after:readonlycore; required-after:galacticraftcore; required-after:galacticraftplanets;";
public static final String RESOURCE_PREFIX = MODID + ":";
public static final Logger LOGGER = LogManager.getLogger(Exoplanets.MODID);
public static final StellarRegistry REGISTRY = new StellarRegistry();
Expand Down
7 changes: 4 additions & 3 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/interstellar-exoplanets",
"promos": {
"1.12.2-latest": "1.0.0",
"1.12.2-recommended": "1.0.0"
"1.12.2-latest": "1.0.2-beta",
"1.12.2-recommended": "1.0.2-beta"
},
"1.12.2": {
"1.0.0": "Working Basemod, Block and Item Examples"
"0.0.1-beta": "first release",
"0.0.2-beta": "fix exoplanets needing spesific galacticraft .237 version installed"
}
}

0 comments on commit 6bdf5f6

Please sign in to comment.