-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from praxis-live/netty-hub
New network hub based on Netty and Ion
- Loading branch information
Showing
31 changed files
with
2,924 additions
and
3,609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
module org.praxislive.hub.net { | ||
|
||
requires java.logging; | ||
|
||
|
||
requires org.praxislive.hub; | ||
requires org.praxislive.core; | ||
requires org.praxislive.base; | ||
requires org.praxislive.script; | ||
|
||
requires org.praxislive.internal.httpd; | ||
requires org.praxislive.internal.osc; | ||
|
||
|
||
requires com.amazon.ion; | ||
requires io.netty.common; | ||
requires io.netty.buffer; | ||
requires io.netty.codec; | ||
requires io.netty.codec.http; | ||
requires io.netty.handler; | ||
requires io.netty.transport; | ||
|
||
exports org.praxislive.hub.net; | ||
|
||
provides org.praxislive.script.CommandInstaller with | ||
org.praxislive.hub.net.internal.HubNetCommands; | ||
|
||
} |
Oops, something went wrong.