Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenquotes.git

Cross-compile to JDK 11

AuthorDave Jarvis <email>
Date2021-06-20 09:14:53 GMT-0700
Commitf523bc732b7b797068059a93ae299d003c94cdc3
Parentd6c9761
build.gradle
compileJava {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
+ options.compilerArgs.addAll(['--release', '11'])
}
src/main/resources/com/whitemagicsoftware/keenquotes/app.properties
-application.version=v1.0.1.dirty
+
src/test/java/com/whitemagicsoftware/keenquotes/KeenQuotesTest.java
}
+ /**
+ * Re-enable using <a href="https://www.gutenberg.org/">Project Gutenberg</a>
+ * texts.
+ *
+ * @param filename A plain text file to convert.
+ * @throws IOException Could not find, open, or read from text file.
+ */
@ParameterizedTest
@ValueSource( strings = {"habberton"} )
+ @Disabled
void test_Parse_Story_Converted( final String filename ) throws IOException {
final var sb = new StringBuilder( 2 ^ 20 );
Delta10 lines added, 1 line removed, 9-line increase