Skip to content

Commit

Permalink
Milestone Release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Jun 19, 2022
1 parent de485ef commit 000fee6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

## Modulepath and boot

### `java.lang.module.FindException: Module xalan not found, required by io.sf.carte.echosvg.dom`
### [0.1.x] `java.lang.module.FindException: Module xalan not found, required by io.sf.carte.echosvg.dom`

The module system is refusing to create a filename-based module name from the
Xalan jar file because [it is finding a declaration of a non-existent service provider](https://issues.apache.org/jira/browse/XALANJ-2632).

The workaround is to use a plugin to force the declaration of a module name.
The solution is to upgrade to EchoSVG 0.2 or later, but if you cannot do that
the workaround is to use a plugin to force the declaration of a module name.

With [Gradle](https://gradle.org/) you can use either the [`extra-java-module-info`](https://plugins.gradle.org/plugin/de.jjohannes.extra-java-module-info)
plugin:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ repositories {
releasesOnly()
}
content {
includeGroup 'com.github.css4j'
includeGroup 'io.sf.carte'
includeGroup 'io.sf.jclf'
}
Expand All @@ -202,7 +203,7 @@ dependencies {
}
```
where `echosvgVersion` would be defined in a `gradle.properties` file (current
version is `0.1.2`).
version is `0.2`).

<br/>

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/echosvg.java-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
}

group = 'io.sf.carte'
version = '0.1.2'
version = '0.2'

sourceSets.main.resources {
srcDirs += ["$rootDir/shared-resources"]
Expand Down

0 comments on commit 000fee6

Please sign in to comment.