styled-xml-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.itextpdf</groupId> <artifactId>styled-xml-parser</artifactId> <version>9.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.itextpdf</groupId> <artifactId>root</artifactId> <version>9.1.0</version> </parent> <artifactId>styled-xml-parser</artifactId> <name>iText - Styled XML Parser</name> <description>Styled XML parser is used by iText modules to parse HTML and XML</description> <url>https://itextpdf.com/</url> <dependencies> <dependency> <groupId>com.itextpdf</groupId> <artifactId>io</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>kernel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>layout</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>pdftest</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>with-sharpen</id> <build> <plugins> <plugin> <groupId>sharpen</groupId> <artifactId>sharpen-maven-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>sharpen</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>sharpen</groupId> <artifactId>standard-framework-mapping</artifactId> <version>1.0-SNAPSHOT</version> </dependency> </dependencies> <configuration> <projectName>styled-xml-parser</projectName> <cSharpTargetFolder>./../../../sharp/itextcore</cSharpTargetFolder> <cSharpSourceCodeDestination>itext/itext.styledxmlparser</cSharpSourceCodeDestination> <cSharpTestCodeDestination>itext.tests/itext.styledxmlparser.tests</cSharpTestCodeDestination> <buildDotnet>${sharpen.builddotnet}</buildDotnet> <showDiff>${sharpen.showdiff}</showDiff> <sourceCodeFiles> <file>**/src/main/java/**/*.java</file> </sourceCodeFiles> <testCodeFiles> <file>**/src/test/java/**/*.java</file> </testCodeFiles> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>