html
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nasdanika.html</groupId> <artifactId>html</artifactId> <version>2025.7.0</version> </dependency>
<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> <artifactId>parent</artifactId> <groupId>org.nasdanika.html</groupId> <version>2025.7.0</version> <relativePath>..</relativePath> </parent> <artifactId>html</artifactId> <packaging>jar</packaging> <name>Nasdanika HTML</name> <description>Classes for generating HTML UI.</description> <url>https://docs.nasdanika.org/modules/html/modules/html/index.html</url> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.nasdanika.core</groupId> <artifactId>common</artifactId> <version>${core.version}</version> </dependency> </dependencies> </project>