| Group ID: |
guru.nidi |
| Artifact ID: |
code-assert |
| Last modified: |
30.01.2021 22:18 |
| Packaging: |
jar |
| Name: |
code-assert |
|
|
| Size: |
94.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/guru/nidi/code-assert/0.9.15/code-assert-0.9.15.jar |
| POM: |
Show
hide
<?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>guru.nidi</groupId>
<artifactId>code-assert-parent</artifactId>
<version>0.9.15</version>
</parent>
<artifactId>code-assert</artifactId>
<name>${project.artifactId}</name>
<properties>
<module.name>guru.nidi.codeassert</module.name>
<checkstyle.version>6.19</checkstyle.version>
<findbugs.version>4.2.0</findbugs.version>
<findsecbugs.version>1.11.0</findsecbugs.version>
<pmd.version>5.8.1</pmd.version>
<kotlin.version>1.3.71</kotlin.version>
<detekt.version>1.9.1</detekt.version>
<ktlint.version>0.36.0</ktlint.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>guru.nidi</groupId>
<artifactId>code-assert-maven-plugin</artifactId>
<version>0.9.14</version>
<executions>
<execution>
<goals>
<goal>prepare</goal>
<goal>assert</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>guru.nidi.maven.plugins</groupId>
<artifactId>snippets-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>snippets</goal>
</goals>
<configuration>
<inputs>
<input>
src/test/java/guru/nidi/codeassert/snippets
</input>
</inputs>
<outputs>
<output>../README.md</output>
</outputs>
<prefix>\n```java</prefix>
<postfix>```\n</postfix>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>test-compile</id>
<goals>
<goal>test-compile</goal>
</goals>
<configuration>
<sourceDirs>
<sourceDir>src/test/kotlin</sourceDir>
</sourceDirs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>code-assert-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${findbugs.version}</version>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-debug-all</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>${findsecbugs.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${pmd.version}</version>
</dependency>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
<exclusions>
<exclusion>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>io.gitlab.arturbosch.detekt</groupId>
<artifactId>detekt-core</artifactId>
<version>${detekt.version}</version>
</dependency>
<dependency>
<groupId>io.gitlab.arturbosch.detekt</groupId>
<artifactId>detekt-rules</artifactId>
<version>${detekt.version}</version>
</dependency>
<dependency>
<groupId>com.pinterest.ktlint</groupId>
<artifactId>ktlint-core</artifactId>
<version>${ktlint.version}</version>
</dependency>
<dependency>
<groupId>com.pinterest.ktlint</groupId>
<artifactId>ktlint-ruleset-standard</artifactId>
<version>${ktlint.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>arturbosch-code-analysis</id>
<name>arturbosch-code-analysis (for detekt)</name>
<url>https://dl.bintray.com/arturbosch/code-analysis/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>
|
| Maven: |
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>code-assert</artifactId>
<version>0.9.15</version>
</dependency>
|
| Gradle: |
guru.nidi:code-assert:0.9.15 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
JAR
checkstyle-6.19.jar
in com/puppycrawl/tools/checkstyle/6.19
-
JAR
code-assert-core-0.9.15.jar
in guru/nidi/code-assert-core/0.9.15
-
[JAR]
detekt-core-1.9.1.jar
in io/gitlab/arturbosch/detekt/detekt-core/1.9.1
-
[JAR]
detekt-rules-1.9.1.jar
in io/gitlab/arturbosch/detekt/detekt-rules/1.9.1
-
[JAR]
findsecbugs-plugin-1.11.0.jar
in com/h3xstream/findsecbugs/findsecbugs-plugin/1.11.0
-
JAR
jcl-over-slf4j-1.7.21.jar
in org/slf4j/jcl-over-slf4j/1.7.21
-
JAR
jul-to-slf4j-1.7.21.jar
in org/slf4j/jul-to-slf4j/1.7.21
-
[JAR]
junit-4.13.1.jar
in junit/junit/4.13.1
-
JAR
junit-jupiter-api-5.0.0-M2.jar
in org/junit/jupiter/junit-jupiter-api/5.0.0-M2
-
[JAR]
kotlin-compiler-embeddable-1.3.71.jar
in org/jetbrains/kotlin/kotlin-compiler-embeddable/1.3.71
-
[JAR]
kotlin-stdlib-1.3.71.jar
in org/jetbrains/kotlin/kotlin-stdlib/1.3.71
-
[JAR]
ktlint-core-0.36.0.jar
in com/pinterest/ktlint/ktlint-core/0.36.0
-
[JAR]
ktlint-ruleset-standard-0.36.0.jar
in com/pinterest/ktlint/ktlint-ruleset-standard/0.36.0
-
JAR
pmd-java-5.8.1.jar
in net/sourceforge/pmd/pmd-java/5.8.1
-
JAR
slf4j-simple-1.7.14.jar
in org/slf4j/slf4j-simple/1.7.14
-
[JAR]
spotbugs-4.2.0.jar
in com/github/spotbugs/spotbugs/4.2.0
|
| Used by: iArtifacts that declare a dependency on this library - on any version, not necessarily this exact one. |
|
| Dependency Graph: |
Show
Less
More
|