Skip to content

Commit 6974707

Browse files
author
xnrand
committed
migrate to git
0 parents  commit 6974707

19 files changed

Lines changed: 1293 additions & 0 deletions

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
maven { url = "http://files.minecraftforge.net/maven" }
5+
}
6+
dependencies {
7+
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
8+
}
9+
}
10+
11+
apply plugin: 'net.minecraftforge.gradle.forge'
12+
13+
version = "1.1"
14+
group = "simpleircbridge"
15+
archivesBaseName = "SimpleIRCBridge"
16+
17+
sourceCompatibility = targetCompatibility = '1.8'
18+
compileJava {
19+
sourceCompatibility = targetCompatibility = '1.8'
20+
}
21+
22+
minecraft {
23+
version = "1.12.2-14.23.1.2555"
24+
runDir = "run"
25+
mappings = "snapshot_20171003"
26+
}
27+
28+
processResources {
29+
inputs.property "version", project.version
30+
inputs.property "mcversion", project.minecraft.version
31+
32+
from(sourceSets.main.resources.srcDirs) {
33+
include 'mcmod.info'
34+
expand 'version':project.version, 'mcversion':project.minecraft.version
35+
}
36+
37+
from(sourceSets.main.resources.srcDirs) {
38+
exclude 'mcmod.info'
39+
}
40+
}

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
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

gradle/wrapper/gradle-wrapper.jar

51 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Sep 14 12:28:28 PDT 2015
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip

gradlew

Lines changed: 170 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: 90 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)