Skip to content

Commit 09c7d65

Browse files
committed
Mod API 1.0 Release
1 parent 0ceab01 commit 09c7d65

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ You can then include the dependency in your project.
4747
<dependency>
4848
<groupId>net.hypixel</groupId>
4949
<artifactId>mod-api</artifactId>
50-
<version>0.5.0</version>
50+
<version>1.0</version>
5151
</dependency>
5252
```
5353

5454
```gradle
5555
dependencies {
56-
implementation 'net.hypixel:mod-api:0.5.0'
56+
implementation 'net.hypixel:mod-api:1.0'
5757
}
5858
```
5959

@@ -63,7 +63,7 @@ example in Fabric you would include the following in your `fabric.mod.json` file
6363
```json
6464
{
6565
"depends": {
66-
"hypixel-mod-api": ">=0.5.0"
66+
"hypixel-mod-api": ">=1.0"
6767
}
6868
}
6969
```

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,19 @@
7272
<target>1.8</target>
7373
</configuration>
7474
</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>
7588
<plugin>
7689
<groupId>org.apache.maven.plugins</groupId>
7790
<artifactId>maven-shade-plugin</artifactId>

0 commit comments

Comments
 (0)