diff --git a/event/pom.xml b/event/pom.xml index 52bdd8574..51ad183d0 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -17,13 +17,4 @@ BungeeCord-Event Generic java event dispatching API intended for use with BungeeCord - - - - junit - junit - 4.11 - test - - diff --git a/http/nb-configuration.xml b/http/nb-configuration.xml new file mode 100644 index 000000000..7e4659240 --- /dev/null +++ b/http/nb-configuration.xml @@ -0,0 +1,31 @@ + + + + + + project + NEW_LINE + NEW_LINE + NEW_LINE + true + true + true + true + true + true + true + true + true + true + + diff --git a/http/pom.xml b/http/pom.xml new file mode 100644 index 000000000..9b5655c60 --- /dev/null +++ b/http/pom.xml @@ -0,0 +1,35 @@ + + + 4.0.0 + + + net.md-5 + bungeecord-parent + 1.6.1-SNAPSHOT + ../pom.xml + + + net.md-5 + bungeecord-http + 1.6.1-SNAPSHOT + jar + + BungeeCord-HTTP + Minimal HTTP API for sending basic GET requests + + + + io.netty + codec-http + ${netty.version} + compile + + + junit + junit + 4.11 + test + + + diff --git a/http/src/main/java/net/md_5/bungee/http/HttpClient.java b/http/src/main/java/net/md_5/bungee/http/HttpClient.java new file mode 100644 index 000000000..8f10abef1 --- /dev/null +++ b/http/src/main/java/net/md_5/bungee/http/HttpClient.java @@ -0,0 +1,5 @@ +package net.md_5.bungee.http; + +public class HttpClient +{ +} diff --git a/pom.xml b/pom.xml index 84d480f4a..0e440f020 100644 --- a/pom.xml +++ b/pom.xml @@ -39,6 +39,7 @@ api event + http protocol proxy diff --git a/protocol/pom.xml b/protocol/pom.xml index 1fd4d7740..db77213b7 100644 --- a/protocol/pom.xml +++ b/protocol/pom.xml @@ -23,7 +23,7 @@ io.netty netty-buffer ${netty.version} - provided + compile