| Group ID: |
com.unitvectory |
| Artifact ID: |
jsonassertify |
| Version: |
0.0.6 |
| Last modified: |
23.06.2026 10:57 |
| Packaging: |
jar |
| Name: |
JSONassertify |
| Description: |
Write JSON unit tests in less code. Great for testing REST interfaces. |
| URL: |
https://github.com/UnitVectorY-Labs/JSONassertify |
|
|
| Size: |
30.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/unitvectory/jsonassertify/0.0.6/jsonassertify-0.0.6.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>
<groupId>com.unitvectory</groupId>
<artifactId>jsonassertify</artifactId>
<version>0.0.6</version>
<packaging>jar</packaging>
<name>JSONassertify</name>
<description>Write JSON unit tests in less code. Great for testing REST interfaces.</description>
<url>https://github.com/UnitVectorY-Labs/JSONassertify</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>8</maven.compiler.release>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:UnitVectorY-Labs/jsonassertify.git</connection>
<developerConnection>scm:git:git@github.com:UnitVectorY-Labs/jsonassertify.git</developerConnection>
<url>git@github.com:UnitVectorY-Labs/jsonassertify.git</url>
</scm>
<developers>
<developer>
<name>Jared Hatfield</name>
<email>jjhatf02@gmail.com</email>
<organization>UnitVectorY Labs</organization>
<organizationUrl>https://github.com/UnitVectorY-Labs</organizationUrl>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20260522</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>6.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>3.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.15</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>com.unitvectory</groupId>
<artifactId>jsonassertify</artifactId>
<version>0.0.6</version>
</dependency>
|
| Gradle: |
com.unitvectory:jsonassertify:0.0.6 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
hamcrest-3.0.jar
in org/hamcrest/hamcrest/3.0
-
[JAR]
json-20260522.jar
in org/json/json/20260522
-
[JAR]
junit-jupiter-api-6.1.0.jar
in org/junit/jupiter/junit-jupiter-api/6.1.0
|
| Dependency Graph: |
Show
Less
More
|