xincproc

XInclude processor implementation

Лицензия

Лицензия

Группа

Группа

org.etourdot
Идентификатор

Идентификатор

xincproc
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

pom
Описание

Описание

xincproc
XInclude processor implementation
Ссылка на сайт

Ссылка на сайт

http://xincproc.etourdot.org
Система контроля версий

Система контроля версий

https://github.com/etourdot/xincproc

Скачать xincproc

Имя Файла Размер
xincproc-1.0.1.pom 29 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.etourdot/xincproc/ -->
<dependency>
    <groupId>org.etourdot</groupId>
    <artifactId>xincproc</artifactId>
    <version>1.0.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.etourdot/xincproc/
implementation 'org.etourdot:xincproc:1.0.1'
// https://jarcasting.com/artifacts/org.etourdot/xincproc/
implementation ("org.etourdot:xincproc:1.0.1")
'org.etourdot:xincproc:pom:1.0.1'
<dependency org="org.etourdot" name="xincproc" rev="1.0.1">
  <artifact name="xincproc" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.etourdot', module='xincproc', version='1.0.1')
)
libraryDependencies += "org.etourdot" % "xincproc" % "1.0.1"
[org.etourdot/xincproc "1.0.1"]

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.2
com.google.guava : guava jar 14.0.1
net.sf.saxon : Saxon-HE jar 9.5.0.1
org.antlr : antlr-runtime jar 3.4
ch.qos.logback : logback-classic jar 1.0.6

test (6)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11
xmlunit : xmlunit jar 1.4
org.concordion : concordion jar 1.4.3
org.concordion : concordion-extensions jar 1.1.0
ognl : ognl jar 3.0.2
xom : xom jar 1.2.5

Модули Проекта

  • xinclude
  • xpointer
  • xincproc-exe

XIncProc Framework

Build Status

Quality

The XIncProc Frameword provides an almost complete implementation of W3C XML Inclusions (XInclude) Version 1.0 (Second Edition).

Althougt XInclude is supported into Jaxp implementation since Java 1.5, this support is very incomplete.

XIncProc brings a most powerfull support including xpointer, element, xpath and xmlns schemes.

For a complete documentation see the project site

How to use

API Usage

// Open a stream
final FileInputStream source = new FileInputStream(urlTest.getPath());
// Parse it
final ByteArrayOutputStream output = new ByteArrayOutputStream();
XIncProcEngine.parse(source, urlTest.toExternalForm(), output);
// That's all !
final String result = output.toString("UTF-8");

Just have a look to Specs for more samples

Line command

If you to use XInclude resolution in batch mode, you can call the engine through CLI interface: java -jar xincproc.jar -if sample.xml -of output.xml

Specifications and conformance

XIncProc conformance is tested against the official Xinclude Test Suite

See conformance here

Issue Tracking

You can create issues on Github here: https://github.com/etourdot/xincproc/issues

License

Copyright 2013 Emmanuel Tourdot

The XIncProc frameword is released under version 3.0 of the LGPL Licence

Thanks

Many thanks to :

Версии библиотеки

Версия
1.0.1
1.0.0