Skip to content

Commit 8c666d2

Browse files
committed
Initial 1.14 Commit
0 parents  commit 8c666d2

File tree

24 files changed

+790
-0
lines changed

24 files changed

+790
-0
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# eclipse
2+
bin
3+
*.launch
4+
.settings
5+
.metadata
6+
.classpath
7+
.project
8+
9+
# idea
10+
out
11+
*.ipr
12+
*.iws
13+
*.iml
14+
.idea
15+
16+
# gradle
17+
build
18+
.gradle
19+
20+
# other
21+
eclipse
22+
run
23+
24+
# Files from Forge MDK
25+
forge*changelog.txt

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Random Things

build.gradle

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
buildscript {
2+
repositories {
3+
maven { url = 'https://files.minecraftforge.net/maven' }
4+
jcenter()
5+
mavenCentral()
6+
}
7+
dependencies {
8+
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
9+
}
10+
}
11+
apply plugin: 'net.minecraftforge.gradle'
12+
13+
apply plugin: 'eclipse'
14+
apply plugin: 'maven-publish'
15+
16+
version = '5.0'
17+
group = 'lumien.randomthings'
18+
archivesBaseName = 'RandomThings-MC1.14.3'
19+
20+
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
21+
22+
minecraft {
23+
mappings channel: 'snapshot', version: '20190621-1.14.2'
24+
25+
// accessTransformer = file('build/resources/main/META-INF/accesstransformer.cfg')
26+
27+
28+
runs {
29+
client {
30+
workingDirectory project.file('run')
31+
32+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
33+
34+
property 'forge.logging.console.level', 'debug'
35+
36+
mods {
37+
randomthings {
38+
source sourceSets.main
39+
}
40+
}
41+
}
42+
43+
server {
44+
workingDirectory project.file('run')
45+
46+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
47+
48+
property 'forge.logging.console.level', 'debug'
49+
50+
mods {
51+
randomthings {
52+
source sourceSets.main
53+
}
54+
}
55+
}
56+
57+
data {
58+
workingDirectory project.file('run')
59+
60+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
61+
62+
property 'forge.logging.console.level', 'debug'
63+
64+
args '--mod', 'randomthings', '--all', '--output', file('src/generated/resources/')
65+
66+
mods {
67+
randomthings {
68+
source sourceSets.main
69+
}
70+
}
71+
}
72+
}
73+
}
74+
75+
dependencies {
76+
minecraft 'net.minecraftforge:forge:1.14.3-27.0.25'
77+
}
78+
79+
// Example for how to get properties into the manifest for reading by the runtime..
80+
jar {
81+
manifest {
82+
attributes([
83+
"Specification-Title": project.name,
84+
"Specification-Vendor": "Lumien",
85+
"Specification-Version": "${version}", // We are version 1 of the modlauncher specification
86+
"Implementation-Title": project.name,
87+
"Implementation-Version": "${version}",
88+
"Implementation-Vendor" :"Lumien",
89+
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],)
90+
}
91+
}

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
2+
# This is required to provide enough memory for the Minecraft decompilation process.
3+
org.gradle.jvmargs=-Xmx3G
4+
org.gradle.daemon=false

gradle/wrapper/gradle-wrapper.jar

53.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)