forked from rzymek/opczip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add module-info.java, fixes rzymek#2
- Bump test dependency + plugin versions - Set project.build.sourceEncoding to fix build warning - Fix FileListTest when run as a module - Bump Travis JDK version to oraclejdk9 - Set scm.url without property reference so it works on search.maven.org
- Loading branch information
Showing
4 changed files
with
40 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
language: java | ||
jdk: oraclejdk8 | ||
jdk: oraclejdk9 |
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,6 @@ | ||
module com.github.rzymek.opczip { | ||
exports com.github.rzymek.opczip; | ||
exports com.github.rzymek.opczip.reader; | ||
exports com.github.rzymek.opczip.reader.ordered; | ||
exports com.github.rzymek.opczip.reader.skipping; | ||
} |
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