unidoc-publisher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.fiddlededee</groupId> <artifactId>unidoc-publisher</artifactId> <version>0.9.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>ru.fiddlededee</groupId> <artifactId>unidoc-publisher</artifactId> <version>0.9.2</version> <name>UniDoc Publisher</name> <description>UniDoc Publisher is a highly customizable Kotlin library that provides a comprehensive set of tools to parse HTML files into an abstract syntax tree (AST), transform it in any desirable way and render the Open Document flat format (FODT)</description> <url>https://github.com/fiddlededee/unidoc-publisher</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>fiddlededee</id> <name>Nikolaj Potashnikov</name> <email>consulting@yandex.ru</email> </developer> </developers> <scm> <connection>scm:git://github.com:fiddlededee/unidoc-publisher.git</connection> <developerConnection>scm:git://github.com:fiddlededee/unidoc-publisher.git</developerConnection> <url>https://github.com/fiddlededee/unidoc-publisher</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.18.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.18.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.redundent</groupId> <artifactId>kotlin-xml-builder</artifactId> <version>1.9.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>