Skip to content

Commit 5fc1112

Browse files
committed
Merge branch 'master' of github.com:FasterXML/jackson-dataformat-xml
2 parents ebc13fd + c08790f commit 5fc1112

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Overview
22

3-
This projects contains [Jackson](http://http://wiki.fasterxml.com/JacksonHome) extension component for
3+
This projects contains [Jackson](http://wiki.fasterxml.com/JacksonHome) extension component for
44
reading and writing [XML](http://en.wikipedia.org/wiki/Xml) encoded data.
55

66
Further, the goal is to emulate how [JAXB](http://en.wikipedia.org/wiki/JAXB) data-binding works
@@ -23,7 +23,7 @@ Specifically:
2323
# Status
2424

2525
Version 2.0 works for significant number of XML/JAXB use cases.
26-
Missing functionality is tracked via [Issue tracker](./issues).
26+
Missing functionality is tracked via [Issue tracker](https://github.com/FasterXML/jackson-dataformat-xml/issues).
2727

2828
There are older versions (1.9.2) available, which work with older Jackson versions (0.6.2): this is maintained on "1.9" branch,
2929
and uses different group id ("com.fasterxml" as well as artifact id ("jackson-xml-databind")
@@ -125,14 +125,14 @@ Simple value = xmlMapper.readValue("<Simple><x>1</x><y>2</y></Simple>", Simple.c
125125

126126
## Additional annotations
127127

128-
In addition to standard [Jackson annotations](jackson-annotations) and optional JAXB (`javax.xml.bind.annotation`), this project also adds couple of its own annotations for convenience, to support XML-specific details:
128+
In addition to standard [Jackson annotations](https://github.com/FasterXML/jackson-annotations) and optional JAXB (`javax.xml.bind.annotation`), this project also adds couple of its own annotations for convenience, to support XML-specific details:
129129

130130
* `@JacksonXmlElementWrapper` allows specifying XML element to use for wrapping `List` and `Map` properties
131131
* `@JacksonXmlProperty` allows specifying XML namespace and local name for a property; as well as whether property is to be written as an XML element or attribute.
132132
* `@JacksonXmlRootElement` allows specifying XML element to use for wrapping the root element (default uses 'simple name' of the value class)
133133
* `@JacksonXmlText` allows specifying that value of one property is to be serialized as "unwrapped" text, and not in an element.
134134

135-
for longer description, check out [XML module annotations](../../wiki/Jackson-XML-annotations).
135+
for longer description, check out [XML module annotations](https://github.com/FasterXML/jackson-dataformat-xml/wiki/Jackson-XML-annotations).
136136

137137
## Known Limitations
138138

@@ -148,4 +148,4 @@ Currently, following limitations exist beyond basic Jackson (JSON) limitations:
148148

149149
# See Also
150150

151-
See [wiki page](jackson-dataformat-xml/wiki) for more information
151+
See [wiki page](https://github.com/FasterXML/jackson-dataformat-xml/wiki) for more information

0 commit comments

Comments
 (0)