Skip to content

Commit daf9e2f

Browse files
committed
tmi
1 parent a439e3c commit daf9e2f

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

lib/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ plugins {
66
`maven-publish`
77
id("io.github.liplum.mgpp")
88
}
9+
repositories {
10+
mavenCentral()
11+
maven {
12+
url = uri("https://jitpack.io")
13+
}
14+
}
915
sourceSets {
1016
main {
1117
java.srcDir("src")
@@ -22,6 +28,8 @@ dependencies {
2228
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
2329
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
2430
testImplementation("com.github.liplum:TestUtils:v0.1")
31+
// For Too many items: https://github.com/EB-wilson/TooManyItems
32+
compileOnly("com.github.EB-wilson:TooManyItems:2.2")
2533
}
2634

2735
java {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package multicraft;
2+
3+
import tmi.RecipeEntry;
4+
5+
public class TmiRecipeEntry extends RecipeEntry {
6+
@Override
7+
public void afterInit() {
8+
9+
}
10+
11+
@Override
12+
public void init() {
13+
14+
}
15+
}

0 commit comments

Comments
 (0)