bootstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.nasdanika.html</groupId>
<artifactId>bootstrap</artifactId>
<version>2024.11.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>2024.11.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>bootstrap</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML Bootstrap</name>
<description>Classes for generating Bootstrap UI.</description>
<url>https://docs.nasdanika.org/modules/html/modules/bootstrap/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>${project.groupId}</groupId>
<artifactId>html</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>