jqassistant-wordcloud-report-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-wordcloud-report-plugin</artifactId> <version>1.10.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jqassistant.contrib.common</groupId> <artifactId>parent</artifactId> <version>1.10.0</version> </parent> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-wordcloud-report-plugin</artifactId> <version>1.10.0</version> <name>jQAssistant Word Cloud Report Plugin</name> <description>The jQAssistant report plugin for creating word clouds from from rule results.</description> <url>https://github.com/jqassistant-contrib/jqassistant-wordcloud-report-plugin</url> <licenses> <license> <name>GNU General Public License, v3</name> <url>http://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <id>dirk-mahler</id> <name>Dirk Mahler</name> <email>dirk.mahler@buschmais.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:jqassistant-contrib/jqassistant-wordcloud-report-plugin.git</connection> <developerConnection>scm:git:git@github.com:jqassistant-contrib/jqassistant-wordcloud-report-plugin.git </developerConnection> <url>https://github.com/jqassistant-contrib/jqassistant-wordcloud-report-plugin</url> <tag>1.10.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <org.slf4j.version>1.7.12</org.slf4j.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.kennycason</groupId> <artifactId>kumo-core</artifactId> <version>1.22</version> <exclusions> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> <exclusion> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>shared</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>analysis</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>report</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>plugin</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>common</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!-- unit tests --> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>store</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>common</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>com.buschmais.jqassistant.neo4jserver</groupId> <artifactId>neo4jv3</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> </dependencies> </project>