-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved CssProtocol to separate module to fix JavaDoc issue
- Loading branch information
Showing
12 changed files
with
70 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- File managed by WebFX (DO NOT EDIT MANUALLY) --> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>dev.webfx</groupId> | ||
<artifactId>webfx-kit</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>webfx-kit-cssprotocol-openjfx-plugin</artifactId> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>dev.webfx</groupId> | ||
<artifactId>webfx-kit-launcher</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</project> |
2 changes: 1 addition & 1 deletion
2
...auncher/spi/impl/openjfx/CssProtocol.java → ...v/webfx/kit/css/protocol/CssProtocol.java
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
14 changes: 14 additions & 0 deletions
14
webfx-kit/webfx-kit-cssprotocol-openjfx-plugin/src/main/java/module-info.java
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,14 @@ | ||
// File managed by WebFX (DO NOT EDIT MANUALLY) | ||
|
||
module webfx.kit.cssprotocol.openjfx.plugin { | ||
|
||
// Direct dependencies modules | ||
requires webfx.kit.launcher; | ||
|
||
// Exported packages | ||
exports dev.webfx.kit.css.protocol; | ||
|
||
// Provided services | ||
provides java.net.spi.URLStreamHandlerProvider with dev.webfx.kit.css.protocol.CssProtocol; | ||
|
||
} |
1 change: 1 addition & 0 deletions
1
...openjfx-plugin/src/main/resources/META-INF/services/java.net.spi.URLStreamHandlerProvider
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 @@ | ||
dev.webfx.kit.css.protocol.CssProtocol |
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,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project> | ||
|
||
<exported-packages> | ||
<source-packages/> | ||
<resource-packages/> | ||
</exported-packages> | ||
|
||
<dependencies> | ||
<used-by-source-modules/> | ||
</dependencies> | ||
|
||
<providers> | ||
<provider interface="java.net.spi.URLStreamHandlerProvider">dev.webfx.kit.css.protocol.CssProtocol</provider> | ||
</providers> | ||
|
||
</project> |
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
1 change: 0 additions & 1 deletion
1
...aphics-openjfx/src/main/resources/META-INF/services/java.net.spi.URLStreamHandlerProvider
This file was deleted.
Oops, something went wrong.
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