Commit 48a0a1f 1 parent 4dc98bd commit 48a0a1f Copy full SHA for 48a0a1f
File tree 7 files changed +63
-3
lines changed
jaxb-annotate-parent/tests
plugin-core/src/main/java/org/jvnet/jaxb/maven
7 files changed +63
-3
lines changed Original file line number Diff line number Diff line change 45
45
<module >annotations</module >
46
46
<module >annox</module >
47
47
<module >annotate</module >
48
+ <module >base-dependent</module >
48
49
<module >issues</module >
49
50
<module >one</module >
50
51
</modules >
Original file line number Diff line number Diff line change @@ -939,9 +939,13 @@ public void setEpisode(boolean episode) {
939
939
* (via <code>scd="x-schema::..."</code>) in the generated episode files.
940
940
* This is necessary to avoid the annoying `SCD "x-schema::tns" didn't
941
941
* match any schema component` errors.
942
+ *
943
+ * @deprecated since 2.0.10 - this is kept for retro-compatibility but will be removed since
944
+ * original bug has been resolved in 2.3.9 JAXB-RI
942
945
*/
943
- @ Parameter (property = "maven.xjc2.addIfExistsToEpisodeSchemaBindings" , defaultValue = "true" )
944
- private boolean addIfExistsToEpisodeSchemaBindings = true ;
946
+ @ Deprecated
947
+ @ Parameter (property = "maven.xjc2.addIfExistsToEpisodeSchemaBindings" , defaultValue = "false" )
948
+ private boolean addIfExistsToEpisodeSchemaBindings = false ;
945
949
946
950
public boolean isAddIfExistsToEpisodeSchemaBindings () {
947
951
return this .addIfExistsToEpisodeSchemaBindings ;
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
2
+ <modelVersion >4.0.0</modelVersion >
3
+ <artifactId >jaxb-maven-plugin-tests-javadoc</artifactId >
4
+ <parent >
5
+ <groupId >org.jvnet.jaxb</groupId >
6
+ <artifactId >jaxb-maven-plugin-tests</artifactId >
7
+ <version >2.0.10-SNAPSHOT</version >
8
+ <relativePath >../pom.xml</relativePath >
9
+ </parent >
10
+ <packaging >jar</packaging >
11
+ <name >JAXB Tools :: Maven Plugin :: Test [javadoc]</name >
12
+ <dependencies >
13
+ <dependency >
14
+ <groupId >jakarta.xml.bind</groupId >
15
+ <artifactId >jakarta.xml.bind-api</artifactId >
16
+ </dependency >
17
+ <dependency >
18
+ <groupId >org.glassfish.jaxb</groupId >
19
+ <artifactId >jaxb-runtime</artifactId >
20
+ </dependency >
21
+ </dependencies >
22
+ <build >
23
+ <plugins >
24
+ <plugin >
25
+ <groupId >org.jvnet.jaxb</groupId >
26
+ <artifactId >jaxb-maven-plugin</artifactId >
27
+ </plugin >
28
+ </plugins >
29
+ </build >
30
+ </project >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <xs : schema xmlns : xs =" http://www.w3.org/2001/XMLSchema" xmlns : jaxb =" https://jakarta.ee/xml/ns/jaxb" >
3
+ <xs : element name =" Lison" type =" Lison" />
4
+ <xs : complexType name =" Lison" >
5
+ <xs : annotation >
6
+ <xs : documentation >My awesome complex type comment.</xs : documentation >
7
+ </xs : annotation >
8
+ <xs : sequence >
9
+ <xs : element name =" Truck" type =" xs:string" minOccurs =" 1" maxOccurs =" 1" >
10
+ <xs : annotation >
11
+ <xs : documentation >My awesome element comment.</xs : documentation >
12
+ </xs : annotation >
13
+ </xs : element >
14
+ </xs : sequence >
15
+ </xs : complexType >
16
+ </xs : schema >
Original file line number Diff line number Diff line change
1
+ log4j.rootCategory =DEBUG, stdout
2
+ log4j.appender.stdout =org.apache.log4j.ConsoleAppender
3
+ log4j.appender.stdout.target =system.out
4
+ log4j.appender.stdout.layout =org.apache.log4j.PatternLayout
5
+ log4j.appender.stdout.layout.ConversionPattern =%m%n %c%n%n
6
+ log4j.logger.org.apache.commons.digester =INFO
7
+ log4j.logger.org.jvnet.hyperjaxb3 =DEBUG
8
+ log4j.logger.org.hibernate =WARN
Original file line number Diff line number Diff line change 31
31
<module >catalog-xml</module >
32
32
<module >episodes</module >
33
33
<module >issues</module >
34
+ <module >javadoc</module >
34
35
<module >p_o</module >
35
36
<module >po-2.3</module >
36
37
<module >po-scd</module >
Original file line number Diff line number Diff line change 66
66
<ant .version>1.10.12</ant .version>
67
67
<dtd-parser .version>1.4.5</dtd-parser .version>
68
68
<!-- jakarta.activation.version>1.2.2</jakarta.activation.version -->
69
- <jaxb .version>2.3.8 </jaxb .version>
69
+ <jaxb .version>2.3.9 </jaxb .version>
70
70
<istack .version>3.0.12</istack .version>
71
71
72
72
<commons-beanutils .version>1.9.4</commons-beanutils .version>
You can’t perform that action at this time.
0 commit comments