File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ plugins {
6
6
`maven- publish`
7
7
id(" io.github.liplum.mgpp" )
8
8
}
9
+ repositories {
10
+ mavenCentral()
11
+ maven {
12
+ url = uri(" https://jitpack.io" )
13
+ }
14
+ }
9
15
sourceSets {
10
16
main {
11
17
java.srcDir(" src" )
@@ -22,6 +28,8 @@ dependencies {
22
28
testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.2" )
23
29
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.8.2" )
24
30
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" )
25
33
}
26
34
27
35
java {
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments