Skip to content

Commit

Permalink
Version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
highsource committed Jan 22, 2017
1 parent cd49e0c commit ef51e96
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
<jaxb.version>2.2.11</jaxb.version>
<jaxb-api.version>2.2.11</jaxb-api.version>
<maven-jaxb2-plugin.version>0.13.1</maven-jaxb2-plugin.version>
<annox.version>1.0.1</annox.version>
<annox.version>1.0.2</annox.version>
<jaxb2-basics.version>0.11.1-SNAPSHOT</jaxb2-basics.version>
</properties>
<dependencies>
Expand Down
10 changes: 10 additions & 0 deletions tests/issues/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.8.6</version>
</dependency>
</dependencies>
<build>
<defaultGoal>test</defaultGoal>
Expand All @@ -75,6 +80,11 @@
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
</plugin>
<plugin>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.8.6</version>
</plugin>
</plugins>
</configuration>
</plugin>
Expand Down
3 changes: 3 additions & 0 deletions tests/issues/src/main/resources/binding.xjb
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,8 @@
<annox:annotate annox:class="java.lang.Deprecated" />
</annox:annotate>
</jaxb:bindings>
<jaxb:bindings node="xsd:complexType[@name='gh36Type']">
<annox:annotate>@com.fasterxml.jackson.annotation.JsonView(java.lang.Object.class)</annox:annotate>
</jaxb:bindings>
</jaxb:bindings>
</jaxb:bindings>
8 changes: 8 additions & 0 deletions tests/issues/src/main/resources/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,12 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>

<xs:complexType name="gh36Type">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="attr" type="xs:normalizedString"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>

0 comments on commit ef51e96

Please sign in to comment.