Skip to content

Commit 6bdf5f6

Browse files
committed
fix galacticraft version dep issue
1 parent 8364b35 commit 6bdf5f6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,20 @@ compileJava {
8282

8383
repositories {
8484
maven { url 'https://jitpack.io' }
85+
maven { url 'http://host.terranetichosting.com:8081/repository/maven-releases/' }
8586
mavenLocal()
8687
jcenter()
8788
mavenCentral()
8889
}
8990

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

9494
compile files (
9595
"lib/Galacticraft-API-1.12.2-${gcversion}.jar",
9696
"lib/GalacticraftCore-Dev-1.12.2-${gcversion}.jar",
9797
"lib/Galacticraft-Planets-Dev-1.12.2-${gcversion}.jar",
9898
"lib/MicdoodleCore-Dev-1.12.2-${gcversion}.jar",
99-
"lib/ReadOnlyCore-1.12.2-1.0.5.jar",
10099
)
101100

102101
}

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ forge_version=14.23.5.2847
1010
mcVersion =1.12.2
1111
versionMajor =0
1212
versionMinor =0
13-
versionRev =1
14-
gcversion=4.0.2.238
13+
versionRev =2
14+
gcversion=4.0.2.244
1515

1616

1717
#Cursforge Project ID (Required)
@@ -27,7 +27,7 @@ cf_versions=1.12.2
2727
#Whether to use a custom display name on artifacts
2828
cf_use_custom_display_name=false
2929
#List of required dependencies (comma separated list)
30-
#cf_requirements =
30+
cf_requirements =readonlycore
3131
#List of optional dependencies (comma separated list)
3232
#cf_optionals =
3333
#List of embedded dependencies (comma separated list)
@@ -53,6 +53,6 @@ create_source_jar=false
5353
#Create an API jar?
5454
create_api_jar=false
5555
#Create a deobf jar?
56-
create_deobf_jar=false
56+
create_deobf_jar=true
5757
#Create a javadoc jar?
5858
create_javadoc_jar=false

src/main/java/net/rom/stellar/Exoplanets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class Exoplanets implements IMod {
3636
public static final String VERSION = "${version}";
3737
public static final String ACCEPTED_MC_VERSIONS = "[1.12.2]";
3838
public static final String ACCEPTED_MC_VERSION = ForgeVersion.mcVersion;
39-
public static final String DEPENDENCIES_MODS = "required-after:readonlycore; required-after:galacticraftcore@[4.0.2.237,); required-after:galacticraftplanets@[4.0.2.237,);";
39+
public static final String DEPENDENCIES_MODS = "required-after:readonlycore; required-after:galacticraftcore; required-after:galacticraftplanets;";
4040
public static final String RESOURCE_PREFIX = MODID + ":";
4141
public static final Logger LOGGER = LogManager.getLogger(Exoplanets.MODID);
4242
public static final StellarRegistry REGISTRY = new StellarRegistry();

update.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"homepage": "https://www.curseforge.com/minecraft/mc-mods/interstellar-exoplanets",
33
"promos": {
4-
"1.12.2-latest": "1.0.0",
5-
"1.12.2-recommended": "1.0.0"
4+
"1.12.2-latest": "1.0.2-beta",
5+
"1.12.2-recommended": "1.0.2-beta"
66
},
77
"1.12.2": {
8-
"1.0.0": "Working Basemod, Block and Item Examples"
8+
"0.0.1-beta": "first release",
9+
"0.0.2-beta": "fix exoplanets needing spesific galacticraft .237 version installed"
910
}
1011
}

0 commit comments

Comments
 (0)