You can download cthul-matchers-1.1.0.jar in this page.
Open Source
cthul-matchers-1.1.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.cthul/cthul-matchers/pom.properties META-INF/maven/org.cthul/cthul-matchers/pom.xml org.cthul.matchers.CthulMatchers.class org.cthul.matchers.MetaMatchers.class org.cthul.matchers.chain.AndChainMatcher.class org.cthul.matchers.chain.ChainBuilderBase.class org.cthul.matchers.chain.ChainFactory.class org.cthul.matchers.chain.ChainFactoryBase.class org.cthul.matchers.chain.MatcherChainBase.class org.cthul.matchers.chain.NOrChainMatcher.class org.cthul.matchers.chain.OrChainMatcher.class org.cthul.matchers.chain.SomeOfChainMatcher.class org.cthul.matchers.chain.XOrChainMatcher.class org.cthul.matchers.diagnose.QuickDiagnose.class org.cthul.matchers.diagnose.QuickDiagnosingMatcher.class org.cthul.matchers.diagnose.QuickDiagnosingMatcherBase.class org.cthul.matchers.diagnose.QuickMatcherBase.class org.cthul.matchers.diagnose.QuickResultMatcherBase.class org.cthul.matchers.diagnose.SelfDescribingBase.class org.cthul.matchers.diagnose.nested.MatcherDescription.class org.cthul.matchers.diagnose.nested.Nested.class org.cthul.matchers.diagnose.nested.NestedMatcher.class org.cthul.matchers.diagnose.nested.NestedResultMatcher.class org.cthul.matchers.diagnose.nested.PrecedencedSelfDescribing.class org.cthul.matchers.diagnose.nested.PrecedencedSelfDescribingBase.class org.cthul.matchers.diagnose.result.AbstractMatchResult.class org.cthul.matchers.diagnose.result.AtomicMismatch.class org.cthul.matchers.diagnose.result.MatchResult.class org.cthul.matchers.diagnose.result.MatchResultBase.class org.cthul.matchers.diagnose.result.MatchResultMismatch.class org.cthul.matchers.diagnose.result.MatchResultProxy.class org.cthul.matchers.diagnose.result.MatchResultSuccess.class org.cthul.matchers.diagnose.result.MatcherProxy.class org.cthul.matchers.diagnose.safe.Typesafe.class org.cthul.matchers.diagnose.safe.TypesafeFeatureMatcher.class org.cthul.matchers.diagnose.safe.TypesafeNestedMatcher.class org.cthul.matchers.diagnose.safe.TypesafeNestedResultMatcher.class org.cthul.matchers.diagnose.safe.TypesafeQuickDiagnoseMatcher.class org.cthul.matchers.diagnose.safe.TypesafeQuickMatcher.class org.cthul.matchers.diagnose.safe.TypesafeQuickResultMatcher.class org.cthul.matchers.exceptions.CausedBy.class org.cthul.matchers.exceptions.ExceptionMessage.class org.cthul.matchers.exceptions.IsThrowable.class org.cthul.matchers.hamcrest.HasDescription.class org.cthul.matchers.hamcrest.HasMatchResult.class org.cthul.matchers.hamcrest.IsMatchResult.class org.cthul.matchers.hamcrest.MatchResultExpected.class org.cthul.matchers.hamcrest.MatcherAccepts.class org.cthul.matchers.object.CIs.class org.cthul.matchers.object.ContainsPattern.class org.cthul.matchers.object.InstanceOf.class org.cthul.matchers.object.InstanceThat.class org.cthul.matchers.proc.Raises.class org.cthul.matchers.proc.Returns.class org.cthul.proc.CurryProc.class org.cthul.proc.P0.class org.cthul.proc.P1.class org.cthul.proc.P2.class org.cthul.proc.P3.class org.cthul.proc.P4.class org.cthul.proc.PN.class org.cthul.proc.Proc.class org.cthul.proc.Proc0.class org.cthul.proc.Proc1.class org.cthul.proc.Proc2.class org.cthul.proc.Proc3.class org.cthul.proc.Proc4.class org.cthul.proc.ProcBase.class org.cthul.proc.ProcError.class org.cthul.proc.Procs.class org.cthul.proc.ReflectiveProc.class
cthul-matchers-1.1.0.pom file content.
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>cthul</artifactId> <groupId>org.cthul</groupId> <version>1.1.0</version> </parent> <groupId>org.cthul</groupId> <artifactId>cthul-matchers</artifactId> <version>1.1.0</version> <name>Cthul Matchers</name> <url>http://cthul.org</url> <description> Provides hamcrest.org matchers for strings and exceptions, allows matching code blocks, and provides several utilities for combining matchers. </description> <distributionManagement> <site> <id>cthul-matcher-maven-docs</id> <url>${project.url.docs}matcher/</url> </site> </distributionManagement> <properties> <generated-matcher-dir>${project.build.directory}/generated-sources/hamcrest</generated-matcher-dir> </properties> <build> <plugins> <!--<plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin>--> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assemble-jar-wo-hamcrest</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/assemble/wo-hamcrest.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>gen-matcher</id> <activation> <property> <name>!skipGenerateMatchers</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>add-matcher-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> </execution> <execution> <id>add-matcher-source-site</id> <phase>pre-site</phase> <goals> <goal>add-source</goal> </goals> </execution> </executions> <configuration> <sources> <source>${generated-matcher-dir}</source> </sources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>generate-matcher-dir</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <mkdir dir="${generated-matcher-dir}"/> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>generate-matchers-class</id> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.hamcrest.generator.config.XmlConfigurator</mainClass> <includePluginDependencies>true</includePluginDependencies> <arguments> <argument>${project.build.sourceDirectory}/../hamcrest/CthulMatchers.xml</argument> <argument>${project.build.sourceDirectory}</argument> <argument>org.cthul.matchers.CthulMatchers</argument> <argument>${generated-matcher-dir}</argument> </arguments> <sourceRoot>${generated-matcher-dir}</sourceRoot> </configuration> </execution> <execution> <id>generate-matchers-class2</id> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.hamcrest.generator.config.XmlConfigurator</mainClass> <includePluginDependencies>true</includePluginDependencies> <arguments> <argument>${project.build.sourceDirectory}/../hamcrest/MetaMatchers.xml</argument> <argument>${project.build.sourceDirectory}</argument> <argument>org.cthul.matchers.MetaMatchers</argument> <argument>${generated-matcher-dir}</argument> </arguments> <sourceRoot>${generated-matcher-dir}</sourceRoot> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-generator</artifactId> <version>${project.dependencies.hamcrest.version}</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>compile-generated-matchers</id> <phase>process-classes</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk16</id> <activation> <property> <name>performRelease</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>compile-1.6</id> <phase>process-classes</phase> <goals><goal>compile</goal></goals> <configuration> <compilerId>eclipse</compilerId> <source>1.7</source> <target>1.6</target> <outputDirectory>${project.build.directory}/classes-1.6</outputDirectory> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-eclipse</artifactId> <version>2.3</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>package-1.6</id> <phase>package</phase> <goals><goal>jar</goal></goals> <configuration> <classesDirectory>${project.build.directory}/classes-1.6</classesDirectory> <classifier>jdk16</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> <dependency> <groupId>org.cthul</groupId> <artifactId>cthul-objects</artifactId> <version>1.2</version> <classifier>jdk16</classifier> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.twip</groupId> <artifactId>twip</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.cthul</groupId> <artifactId>cthul-matchers</artifactId> <version>1.1.0</version> </dependency>
If you think the following cthul-matchers-1.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download cthul-matchers-1.1.0.jar file