Skip to content

Commit 5852ad0

Browse files
authored
keysounds mod
1 parent 77c1d5e commit 5852ad0

13 files changed

Lines changed: 445 additions & 0 deletions

File tree

IosKeySoundsMod/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# IosKeySoundsMod
2+
A mod play plays the ios keyboard sounds when you press keys on your keyboard in 1.8.9 forge

IosKeySoundsMod/build.gradle

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
buildscript {
2+
repositories {
3+
maven {
4+
name = "forge"
5+
url = "http://files.minecraftforge.net/maven"
6+
}
7+
maven { url = 'https://jitpack.io'}
8+
maven { url = "https://repo.spongepowered.org/maven" }
9+
10+
}
11+
12+
dependencies {
13+
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
14+
classpath "org.spongepowered:mixingradle:0.6-SNAPSHOT"
15+
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
16+
}
17+
}
18+
19+
apply plugin: 'net.minecraftforge.gradle.forge'
20+
apply plugin: "org.spongepowered.mixin"
21+
apply plugin: "com.github.johnrengelman.shadow"
22+
23+
version = "1.0"
24+
group = "lmao.glassmods.iksm"
25+
archivesBaseName = "IosKeySoundsMod"
26+
27+
sourceCompatibility = JavaVersion.VERSION_1_8
28+
targetCompatibility = JavaVersion.VERSION_1_8
29+
compileJava.options.encoding = 'UTF-8'
30+
31+
minecraft {
32+
version = "1.8.9-11.15.1.2318-1.8.9"
33+
runDir = "run"
34+
35+
mappings = "stable_22"
36+
}
37+
38+
dependencies {
39+
}
40+
41+
sourceSets {
42+
main {
43+
output.resourcesDir = java.outputDir
44+
}
45+
}
46+
47+
shadowJar {
48+
archiveName = tasks.jar.archiveName
49+
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
50+
classifier = ''
51+
52+
manifest.attributes(
53+
'FMLCorePluginContainsFMLMod': true,
54+
"ForceLoadAsMod": true,
55+
'ModSide': 'CLIENT'
56+
)
57+
58+
exclude('dummyThing')
59+
exclude('LICENSE.txt')
60+
exclude('META-INF/LICENSE.txt')
61+
exclude('META-INF/NOTICE.txt')
62+
}
63+
64+
reobfJar.dependsOn tasks.shadowJar
65+
66+
processResources {
67+
inputs.property "version", project.version
68+
inputs.property "mcversion", project.minecraft.version
69+
70+
from(sourceSets.main.resources.srcDirs) {
71+
include 'mcmod.info'
72+
73+
expand 'version':project.version, 'mcversion':project.minecraft.version
74+
}
75+
76+
from(sourceSets.main.resources.srcDirs) {
77+
exclude 'mcmod.info'
78+
}
79+
}
80+

IosKeySoundsMod/gitignore

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

IosKeySoundsMod/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
org.gradle.jvmargs=-Xmx2G
2+
3+
modid = iksm
51 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+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

IosKeySoundsMod/gradlew

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

IosKeySoundsMod/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)