Skip to content

Commit 6994bf4

Browse files
author
kameron then
committed
VirtualChest
1 parent a29674c commit 6994bf4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+100458
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
/pv 1-100 arası sanal chest.
99

1010
[server perm]
11-
• virtualchest.command.pv - Temel komut izni
12-
• virtualchest.command.reload - Reload komutu izni
13-
• virtualchest.chest.all - Tüm sandıklara erişim izni
14-
• virtualchest.chest.1, virtualchest.chest.2, vb. - Belirli sandıklara erişim izni
11+
# Temel komut izni.
12+
◇ virtualchest.command.pv
13+
# Reload komut izni.
14+
◇ virtualchest.command.reload
15+
# Tüm sandıklara erişim izni.
16+
◇ virtualchest.chest.all
17+
# Belirli sandıklara erişim izni.
18+
◇ virtualchest.chest.1

build.gradle

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
maven { url = "https://files.minecraftforge.net/maven" }
5+
}
6+
dependencies {
7+
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
8+
}
9+
}
10+
apply plugin: 'net.minecraftforge.gradle.forge'
11+
12+
version = "1.0.0"
13+
group = "com.virtualchest"
14+
archivesBaseName = "virtualchest"
15+
16+
sourceCompatibility = targetCompatibility = '1.8'
17+
compileJava {
18+
sourceCompatibility = targetCompatibility = '1.8'
19+
}
20+
21+
minecraft {
22+
version = "1.12.2-14.23.5.2847"
23+
runDir = "run"
24+
25+
mappings = "stable_39"
26+
27+
makeObfSourceJar = false
28+
}
29+
30+
repositories {
31+
maven {
32+
name = 'prog'
33+
url = 'https://dvs1.progwml6.com/files/maven'
34+
}
35+
}
36+
37+
dependencies {
38+
// you may put jars on which you depend on in ./libs
39+
// or you may define them like so..
40+
//compile "some.group:artifact:version:classifier"
41+
//compile "some.group:artifact:version"
42+
43+
// real examples
44+
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
45+
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
46+
47+
// the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
48+
//provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
49+
50+
// the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided,
51+
// except that these dependencies get remapped to your current MCP mappings
52+
//deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev'
53+
//deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
54+
55+
// for more info...
56+
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
57+
// http://www.gradle.org/docs/current/userguide/dependency_management.html
58+
59+
}
60+
61+
processResources {
62+
// this will ensure that this task is redone when the versions change.
63+
inputs.property "version", project.version
64+
inputs.property "mcversion", project.minecraft.version
65+
66+
// replace stuff in mcmod.info, nothing else
67+
from(sourceSets.main.resources.srcDirs) {
68+
include 'mcmod.info'
69+
70+
// replace version and mcversion
71+
expand 'version':project.version, 'mcversion':project.minecraft.version
72+
}
73+
74+
// copy everything else except the mcmod.info
75+
from(sourceSets.main.resources.srcDirs) {
76+
exclude 'mcmod.info'
77+
}
78+
}
4.36 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
783 Bytes
Binary file not shown.
727 Bytes
Binary file not shown.
783 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)