json-unit-fluent
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-fluent</artifactId> <version>4.1.0</version> </dependency>
<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> <artifactId>json-unit-fluent</artifactId> <packaging>bundle</packaging> <description> JSON Assertions inspired by FEST and AssertJ. </description> <parent> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-parent</artifactId> <version>4.1.0</version> </parent> <properties> <osgi.exportPackage>net.javacrumbs.jsonunit.fluent.*</osgi.exportPackage> </properties> <dependencies> <dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name> net.javacrumbs.jsonunit.fluent </Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-resolver-maven-plugin</artifactId> <configuration> <bndruns> <bndrun>resolve.bndrun</bndrun> </bndruns> </configuration> </plugin> </plugins> </build> </project>