Skip to content

Commit

Permalink
Fix JavaDoc and README for Java17 build instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ecki committed May 24, 2024
1 parent a2d7672 commit ef41e8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,24 @@ SEEBURGER Extensions to Apache Commons VFS2
Building
--------

Can be build with Java 7 - Java 11, requires Maven 3.2.x.
(Testing framework fails with Java 17 for the moment).
Can be build with Java 11+, requires Maven 3.9.x

By default Java 8 target compatibility is used. To specify a specific version, use:
By default Java 11 target compatibility is used. To specify a specific version, use:

JAVA_HOME=/opt/jdk11
mvn -B -e -C -V -Prelease-profile -Dmaven.compiler.source=11 -Dmaven.compiler.target=11 clean install
JAVA_HOME=/opt/jdk17
mvn -B -e -C -V -Prelease-profile -Dmaven.compiler.release=8 clean install

Use the following dependency declarations (compile scope should only needed for com.seeburger.vfs2.util):

<dependency>
<groupId>com.seeburger.vfs2</groupId>
<artifactId>vfs2provider-jdbctable</artifactId>
<version>1.7.6</version>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>com.seeburger.vfs2</groupId>
<artifactId>vfs2provider-digestarc</artifactId>
<version>1.7.6</version>
<version>1.8.0</version>
</dependency>

Note: the artifacts are not available via Maven Central.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.6.3</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<body>
<h1>The Digest Archive Provider</h1>
<h2>The Digest Archive Provider</h2>
<p>This layered filesystem works on a VFS2 filesystem to create a Git like snapshot-able
filesystem which supports multiple revisions of a whole subtree.</p>
</body>

0 comments on commit ef41e8a

Please sign in to comment.