crowd-doc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-doc</artifactId>
<version>0.0.1</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.github.lbovolini.crowd</groupId>
<artifactId>crowd</artifactId>
<version>0.0.1</version>
</parent>
<artifactId>crowd-doc</artifactId>
<version>0.0.1</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-benchmark</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-classloader</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-client</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-core</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-discovery</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.lbovolini.crowd</groupId>
<artifactId>crowd-server</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies>
</project>