File tree Expand file tree Collapse file tree 4 files changed +17
-8
lines changed
Expand file tree Collapse file tree 4 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ https://wikipediatools.appspot.com and other Wikipedia-related bits and pieces.
1313Requires JDK >= 1.8. For those using Java 9, only the java.base and java.logging
1414modules are required.
1515
16- Latest stable version: [ 0.35 ] ( https://github.com/MER-C/wiki-java/releases/tag/0.35 ) --
16+ Latest stable version: [ 0.36 ] ( https://github.com/MER-C/wiki-java/releases/tag/0.36 ) --
1717MediaWiki versions 1.31+
1818
1919## Dependencies
Original file line number Diff line number Diff line change @@ -37,19 +37,24 @@ javac.classpath=\
3737# Space-separated list of extra javac options
3838javac.compilerargs =
3939javac.deprecation =false
40+ javac.external.vm =false
41+ javac.modulepath =
42+ javac.processormodulepath =
4043javac.processorpath =\
4144 ${javac.classpath}
4245javac.source =1.8
4346javac.target =1.8
4447javac.test.classpath =\
4548 ${javac.classpath}:\
4649 ${build.classes.dir}:\
47- ${libs.junit_4.classpath}
50+ ${libs.junit_5.classpath}
51+ javac.test.modulepath =
4852javac.test.processorpath =\
4953 ${javac.test.classpath}
5054javadoc.additionalparam =
5155javadoc.author =false
5256javadoc.encoding =${source.encoding}
57+ javadoc.html5 =false
5358javadoc.noindex =false
5459javadoc.nonavbar =false
5560javadoc.notree =false
@@ -58,6 +63,8 @@ javadoc.splitindex=true
5863javadoc.use =true
5964javadoc.version =true
6065javadoc.windowtitle =
66+ jlink.launcher =false
67+ jlink.launcher.name =wiki-java
6168jnlp.codebase.type =no.codebase
6269jnlp.descriptor =application
6370jnlp.enabled =false
@@ -79,9 +86,11 @@ run.classpath=\
7986# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
8087# or test-sys-prop.name=value to set system properties for unit tests):
8188run.jvmargs =
89+ run.modulepath =
8290run.test.classpath =\
8391 ${javac.test.classpath}:\
8492 ${build.test.classes.dir}
93+ run.test.modulepath =
8594source.encoding =UTF-8
8695src.dir =src
8796test.test.dir =test
Original file line number Diff line number Diff line change 11/**
2- * @(#)Wiki.java 0.35 20/05/2018
3- * Copyright (C) 2007 - 2018 MER-C and contributors
2+ * @(#)Wiki.java 0.36 08/02/2019
3+ * Copyright (C) 2007 - 2019 MER-C and contributors
44 *
55 * This program is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU General Public License
5555 * tracker</a>.
5656 *
5757 * @author MER-C and contributors
58- * @version 0.35
58+ * @version 0.36
5959 */
6060public class Wiki implements Comparable <Wiki >
6161{
@@ -383,7 +383,7 @@ public enum Gender
383383 unknown ;
384384 }
385385
386- private static final String version = "0.35 " ;
386+ private static final String version = "0.36 " ;
387387
388388 // fundamental URL strings
389389 private final String protocol , domain , scriptPath ;
Original file line number Diff line number Diff line change 11/**
2- * @(#)WikiTest.java 0.35 20/05/2018
3- * Copyright (C) 2014-2018 MER-C
2+ * @(#)WikiTest.java 0.36 08/02/2019
3+ * Copyright (C) 2014-2019 MER-C
44 *
55 * This program is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU General Public License
You can’t perform that action at this time.
0 commit comments