-
-
Notifications
You must be signed in to change notification settings - Fork 97
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 #623 from hexagonkt/develop
Develop
- Loading branch information
Showing
22 changed files
with
132 additions
and
97 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
module com.hexagonkt.core { | ||
|
||
requires transitive kotlin.stdlib; | ||
|
||
exports com.hexagonkt.core; | ||
exports com.hexagonkt.core.logging; | ||
exports com.hexagonkt.core.media; | ||
exports com.hexagonkt.core.security; | ||
|
||
provides java.net.spi.URLStreamHandlerProvider with com.hexagonkt.core.ClasspathHandlerProvider; | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
module com.hexagonkt.handlers { | ||
|
||
requires transitive kotlin.stdlib; | ||
|
||
exports com.hexagonkt.handlers; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
module com.hexagonkt.http { | ||
|
||
requires transitive com.hexagonkt.core; | ||
|
||
exports com.hexagonkt.http; | ||
exports com.hexagonkt.http.model; | ||
exports com.hexagonkt.http.model.ws; | ||
exports com.hexagonkt.http.patterns; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
module com.hexagonkt.http_client { | ||
|
||
requires transitive kotlin.stdlib; | ||
requires transitive com.hexagonkt.http_handlers; | ||
|
||
exports com.hexagonkt.http.client; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
module com.hexagonkt.http_client_jetty { | ||
|
||
requires transitive com.hexagonkt.http; | ||
requires transitive com.hexagonkt.http_client; | ||
requires transitive org.eclipse.jetty.io; | ||
requires transitive org.eclipse.jetty.util; | ||
requires transitive org.eclipse.jetty.client; | ||
requires transitive org.eclipse.jetty.http2.client; | ||
requires transitive org.eclipse.jetty.http2.http.client.transport; | ||
|
||
exports com.hexagonkt.http.client.jetty; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
module com.hexagonkt.http_client_jetty_ws { | ||
|
||
requires transitive kotlin.stdlib; | ||
requires transitive com.hexagonkt.http_client_jetty; | ||
requires transitive org.eclipse.jetty.io; | ||
requires transitive org.eclipse.jetty.util; | ||
requires transitive org.eclipse.jetty.client; | ||
requires transitive org.eclipse.jetty.http2.client; | ||
requires transitive org.eclipse.jetty.http2.http.client.transport; | ||
requires transitive org.eclipse.jetty.websocket.jetty.api; | ||
requires transitive org.eclipse.jetty.websocket.jetty.client; | ||
|
||
exports com.hexagonkt.http.client.jetty; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
module com.hexagonkt.http_handlers { | ||
|
||
requires transitive com.hexagonkt.http; | ||
requires transitive com.hexagonkt.handlers; | ||
|
||
exports com.hexagonkt.http.handlers; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
module com.hexagonkt.http_server { | ||
|
||
requires transitive com.hexagonkt.core; | ||
requires transitive com.hexagonkt.http_handlers; | ||
|
||
exports com.hexagonkt.http.server; | ||
exports com.hexagonkt.http.server.callbacks; | ||
} |
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
Oops, something went wrong.