File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,13 @@ You can then include the dependency in your project.
47
47
<dependency >
48
48
<groupId >net.hypixel</groupId >
49
49
<artifactId >mod-api</artifactId >
50
- <version >0.5 .0</version >
50
+ <version >1 .0</version >
51
51
</dependency >
52
52
```
53
53
54
54
``` gradle
55
55
dependencies {
56
- implementation 'net.hypixel:mod-api:0.5 .0'
56
+ implementation 'net.hypixel:mod-api:1 .0'
57
57
}
58
58
```
59
59
@@ -63,7 +63,7 @@ example in Fabric you would include the following in your `fabric.mod.json` file
63
63
``` json
64
64
{
65
65
"depends" : {
66
- "hypixel-mod-api" : " >=0.5 .0"
66
+ "hypixel-mod-api" : " >=1 .0"
67
67
}
68
68
}
69
69
```
Original file line number Diff line number Diff line change 72
72
<target >1.8</target >
73
73
</configuration >
74
74
</plugin >
75
+ <plugin >
76
+ <groupId >org.apache.maven.plugins</groupId >
77
+ <artifactId >maven-source-plugin</artifactId >
78
+ <version >3.0.1</version >
79
+ <executions >
80
+ <execution >
81
+ <id >attach-sources</id >
82
+ <goals >
83
+ <goal >jar</goal >
84
+ </goals >
85
+ </execution >
86
+ </executions >
87
+ </plugin >
75
88
<plugin >
76
89
<groupId >org.apache.maven.plugins</groupId >
77
90
<artifactId >maven-shade-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments