Skip to content

Commit 5978b05

Browse files
committed
New version - second refactoring checkpoint.
1 parent f6ac26a commit 5978b05

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ https://wikipediatools.appspot.com and other Wikipedia-related bits and pieces.
1313
Requires JDK >= 1.8. For those using Java 9, only the java.base and java.logging
1414
modules 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) --
1717
MediaWiki versions 1.31+
1818

1919
## Dependencies

nbproject/project.properties

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,24 @@ javac.classpath=\
3737
# Space-separated list of extra javac options
3838
javac.compilerargs=
3939
javac.deprecation=false
40+
javac.external.vm=false
41+
javac.modulepath=
42+
javac.processormodulepath=
4043
javac.processorpath=\
4144
${javac.classpath}
4245
javac.source=1.8
4346
javac.target=1.8
4447
javac.test.classpath=\
4548
${javac.classpath}:\
4649
${build.classes.dir}:\
47-
${libs.junit_4.classpath}
50+
${libs.junit_5.classpath}
51+
javac.test.modulepath=
4852
javac.test.processorpath=\
4953
${javac.test.classpath}
5054
javadoc.additionalparam=
5155
javadoc.author=false
5256
javadoc.encoding=${source.encoding}
57+
javadoc.html5=false
5358
javadoc.noindex=false
5459
javadoc.nonavbar=false
5560
javadoc.notree=false
@@ -58,6 +63,8 @@ javadoc.splitindex=true
5863
javadoc.use=true
5964
javadoc.version=true
6065
javadoc.windowtitle=
66+
jlink.launcher=false
67+
jlink.launcher.name=wiki-java
6168
jnlp.codebase.type=no.codebase
6269
jnlp.descriptor=application
6370
jnlp.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):
8188
run.jvmargs=
89+
run.modulepath=
8290
run.test.classpath=\
8391
${javac.test.classpath}:\
8492
${build.test.classes.dir}
93+
run.test.modulepath=
8594
source.encoding=UTF-8
8695
src.dir=src
8796
test.test.dir=test

src/org/wikipedia/Wiki.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -55,7 +55,7 @@
5555
* tracker</a>.
5656
*
5757
* @author MER-C and contributors
58-
* @version 0.35
58+
* @version 0.36
5959
*/
6060
public 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;

test/org/wikipedia/WikiTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

0 commit comments

Comments
 (0)