File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed
xmlunit-legacy/src/main/java/org/custommonkey/xmlunit/examples Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 298
298
<docencoding >${project.build.sourceEncoding} </docencoding >
299
299
<notimestamp >true</notimestamp >
300
300
<links >
301
- <link >http ://docs.oracle.com/javase/6 /docs/api/</link >
301
+ <link >https ://docs.oracle.com/javase/8 /docs/api/</link >
302
302
</links >
303
303
<additionalparam >${javadoc.additionalparam} </additionalparam >
304
304
</configuration >
543
543
</plugins >
544
544
</build >
545
545
</profile >
546
+ <profile >
547
+ <id >java9+</id >
548
+ <activation >
549
+ <jdk >[9,)</jdk >
550
+ </activation >
551
+ <build >
552
+ <plugins >
553
+ <plugin >
554
+ <groupId >org.apache.maven.plugins</groupId >
555
+ <artifactId >maven-javadoc-plugin</artifactId >
556
+ <configuration >
557
+ <additionalDependencies >
558
+ <dependency >
559
+ <groupId >jakarta.xml.bind</groupId >
560
+ <artifactId >jakarta.xml.bind-api</artifactId >
561
+ <version >${jakarta.xml.bind.version} </version >
562
+ </dependency >
563
+ </additionalDependencies >
564
+ </configuration >
565
+ </plugin >
566
+ </plugins >
567
+ </build >
568
+ </profile >
546
569
<profile >
547
570
<id >java14+</id >
548
571
<activation >
Original file line number Diff line number Diff line change 1
1
/*
2
2
******************************************************************
3
- Copyright (c) 2001-2007,2015 Jeff Martin, Tim Bacon
3
+ Copyright (c) 2001-2007,2015,2022 Jeff Martin, Tim Bacon
4
4
All rights reserved.
5
5
6
6
Redistribution and use in source and binary forms, with or without
@@ -68,8 +68,7 @@ public void testNode(Node aNode, NodeTest forTest) {
68
68
* if all the nodes that were expected were found.
69
69
* Note that this method also invokes {@link #resetCounter resetCounter}
70
70
* so that the instance can be reused.
71
- * @exception true if expected num nodes == actual num nodes,
72
- * false otherwise
71
+ * @throws NodeTestException if expected num nodes == actual num nodes
73
72
*/
74
73
public void noMoreNodes (NodeTest forTest ) throws NodeTestException {
75
74
int testedNodes = actualNumNodes ;
You can’t perform that action at this time.
0 commit comments