| 组织ID: |
net.javacrumbs.json-unit |
| 项目ID: |
json-unit |
| 版本: |
0.0.5 |
| 最后修改时间: |
2019-10-22 19:02:06 |
| 包类型: |
jar |
| 标题: |
Lukas Krecan |
| 描述: |
Unit testing library that can decide if to JSON documents are equal. Strongly inspired by XmlUnit. |
| 相关URL: |
https://github.com/lukas-krecan/JsonUnit |
| 大小: |
9.71KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit</artifactId>
<version>0.0.5</version>
</dependency>
|
| Gradle引入代码: |
net.javacrumbs.json-unit:json-unit:0.0.5
|
| 下载Jar包: |
|
| POM文件内容: |
<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>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit</artifactId>
<version>0.0.5</version>
<url>https://github.com/lukas-krecan/JsonUnit</url>
<description>Unit testing library that can decide if to JSON documents are equal. Strongly inspired by XmlUnit.</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<developers>
<developer>
<id>lukas</id>
<name>Lukas Krecan</name>
<email>lukas@krecan.net</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>header.txt</header>
<excludes>
<exclude>LICENSE.txt</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<keyname>572516F4</keyname>
</configuration>
<version>1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git:git@github.com:lukas-krecan/JsonUnit.git</connection>
<developerConnection>scm:git:git@github.com:lukas-krecan/JsonUnit.git</developerConnection>
<url>scm:git:git@github.com:lukas-krecan/JsonUnit.git</url>
</scm>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
net.javacrumbs.jsonunit.Diff.class
net.javacrumbs.jsonunit.Diff$1.class
net.javacrumbs.jsonunit.Diff$NodeType.class
net.javacrumbs.jsonunit.JsonAssert.class
META-INF/maven/net.javacrumbs.json-unit/json-unit/pom.xml
META-INF/maven/net.javacrumbs.json-unit/json-unit/pom.properties
|
| 依赖Jar: |
jackson-mapper-asl-1.9.4.jar
/org.codehaus.jackson/jackson-mapper-asl/1.9.4
查看jackson-mapper-asl所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
|