File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/main/java/net/gliby/minecraft/udp Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
- Nothing here.
1
+ Nothing here, except this:
2
+ https://github.com/EsotericSoftware/kryonet
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ buildscript {
18
18
apply plugin : ' forge'
19
19
20
20
version = " 1.0"
21
- group= " com.yourname.modid " // http://maven.apache.org/guides/mini/guide-naming-conventions.html
22
- archivesBaseName = " modid "
21
+ group= " net.gliby.minecraft " // http://maven.apache.org/guides/mini/guide-naming-conventions.html
22
+ archivesBaseName = " glibyudp "
23
23
24
24
minecraft {
25
25
version = " 1.8-11.14.3.1450"
@@ -34,6 +34,7 @@ minecraft {
34
34
}
35
35
36
36
dependencies {
37
+ compile ' com.esotericsoftware:kryonet:2.22.0-RC1'
37
38
// you may put jars on which you depend on in ./libs
38
39
// or you may define them like so..
39
40
// compile "some.group:artifact:version:classifier"
@@ -49,6 +50,10 @@ dependencies {
49
50
50
51
}
51
52
53
+ jar {
54
+ from configurations. compile. collect { zipTree it}
55
+ }
56
+
52
57
processResources
53
58
{
54
59
// this will ensure that this task is redone when the versions change.
Original file line number Diff line number Diff line change 21
21
* A simple UDP implementation for Minecraft.
22
22
*
23
23
*/
24
- //TODO Setup gradle.
25
- //TODO Add kryonet to gradle.
24
+ //TODO Get stuff working.
26
25
@ Mod (name = UDP .NAME , modid = UDP .MODID , version = UDP .VERSION )
27
26
public class UDP {
28
27
You can’t perform that action at this time.
0 commit comments