Download bean-matchers-0.9.jar file

Introduction

You can download bean-matchers-0.9.jar in this page.

License

New BSD License

Type List

bean-matchers-0.9.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.code.bean-matchers/bean-matchers/pom.properties
META-INF/maven/com.google.code.bean-matchers/bean-matchers/pom.xml
com.google.code.beanmatchers.AbstractBeanAccessorMatcher.class
com.google.code.beanmatchers.AbstractBeanEqualsMatcher.class
com.google.code.beanmatchers.AbstractBeanHashCodeMatcher.class
com.google.code.beanmatchers.AbstractBeanToStringMatcher.class
com.google.code.beanmatchers.AccessorMissingException.class
com.google.code.beanmatchers.ArrayTypeBasedValueGenerator.class
com.google.code.beanmatchers.BeanMatchers.class
com.google.code.beanmatchers.BeanMatchersException.class
com.google.code.beanmatchers.BeanOperations.class
com.google.code.beanmatchers.BooleanGenerator.class
com.google.code.beanmatchers.ByteGenerator.class
com.google.code.beanmatchers.CharacterGenerator.class
com.google.code.beanmatchers.DefaultTypeBasedValueGenerator.class
com.google.code.beanmatchers.DistinctValues.class
com.google.code.beanmatchers.DoubleGenerator.class
com.google.code.beanmatchers.EnumBasedValueGenerator.class
com.google.code.beanmatchers.FloatGenerator.class
com.google.code.beanmatchers.HasToStringDescribingPropertiesExcludingMatcher.class
com.google.code.beanmatchers.HasToStringDescribingPropertiesMatcher.class
com.google.code.beanmatchers.HasValidBeanConstructorMatcher.class
com.google.code.beanmatchers.HasValidBeanEqualsExcludingMatcher.class
com.google.code.beanmatchers.HasValidBeanEqualsForMatcher.class
com.google.code.beanmatchers.HasValidBeanHashCodeExcludingMatcher.class
com.google.code.beanmatchers.HasValidBeanHashCodeForMatcher.class
com.google.code.beanmatchers.HasValidGettersAndSettersExcludingMatcher.class
com.google.code.beanmatchers.HasValidGettersAndSettersMatcher.class
com.google.code.beanmatchers.InMemoryValueGeneratorRepository.class
com.google.code.beanmatchers.InstantiatingMatcherDecorator.class
com.google.code.beanmatchers.IntegerGenerator.class
com.google.code.beanmatchers.JavaBean.class
com.google.code.beanmatchers.LongGenerator.class
com.google.code.beanmatchers.MockingTypeBasedValueGenerator.class
com.google.code.beanmatchers.ShortGenerator.class
com.google.code.beanmatchers.StringGenerator.class
com.google.code.beanmatchers.TypeBasedValueGenerator.class
com.google.code.beanmatchers.ValueGenerator.class
com.google.code.beanmatchers.ValueGeneratorRepository.class
com.google.code.beanmatchers.ValueGenerators.class
license.txt
readme.md

Pom

bean-matchers-0.9.pom file content.

<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>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <groupId>com.google.code.bean-matchers</groupId>
    <artifactId>bean-matchers</artifactId>
    <version>0.9</version>
    <packaging>jar</packaging>
    <name>Bean Matchers</name>
    <description>Hamcrest matchers for testing Java beans.</description>
    <url>http://code.google.com/p/bean-matchers/</url>
    <inceptionYear>2012</inceptionYear>
    <prerequisites>
        <maven>3.0.4</maven>
    </prerequisites>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <currentVersion>${project.version}</currentVersion>
        <clover.version>3.1.10.1</clover.version>
        <hamcrest.version>1.3</hamcrest.version>
    </properties>
    <licenses>
        <license>
            <name>New BSD License</name>
            <url>http://opensource.org/licenses/BSD-3-Clause</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:https://code.google.com/p/bean-matchers/</connection>
        <developerConnection>scm:git:https://code.google.com/p/bean-matchers/</developerConnection>
        <url>http://code.google.com/p/bean-matchers/source/browse/</url>
      <tag>bean-matchers-0.9</tag>
  </scm>
    <ciManagement>
        <system>Travis</system>
        <url>http://travis-ci.org/#!/orien/bean-matchers</url>
    </ciManagement>
    <issueManagement>
        <system>Google Code</system>
        <url>http://code.google.com/p/bean-matchers/issues/list</url>
    </issueManagement>
    <developers>
        <developer>
            <name>Orien Madgwick</name>
            <email>_@orien.io</email>
            <url>http://orien.io</url>
            <timezone>Australia/Melbourne</timezone>
        </developer>
    </developers>
    <contributors>
    </contributors>
    <dependencies>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>${hamcrest.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <version>${hamcrest.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.9.5</version>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <resources>
            <resource>
                <directory>${basedir}</directory>
                <filtering>false</filtering>
                <includes>
                    <include>license.txt</include>
                    <include>readme.md</include>
                </includes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-clover2-plugin</artifactId>
                <version>${clover.version}</version>
                <executions>
                    <execution>
                        <phase>pre-site</phase>
                        <goals>
                            <goal>instrument-test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <reportPlugins>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-project-info-reports-plugin</artifactId>
                            <version>2.7</version>
                            <configuration>
                                <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
                                <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
                            </configuration>
                            <reports>
                                <report>project-team</report>
                                <report>scm</report>
                                <report>cim</report>
                                <report>issue-tracking</report>
                                <report>license</report>
                                <report>dependencies</report>
                                <report>summary</report>
                            </reports>
                        </plugin>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-javadoc-plugin</artifactId>
                            <version>2.8.1</version>
                            <reports>
                                <report>javadoc</report>
                            </reports>
                        </plugin>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-surefire-report-plugin</artifactId>
                            <version>2.13</version>
                        </plugin>
                        <plugin>
                            <groupId>com.atlassian.maven.plugins</groupId>
                            <artifactId>maven-clover2-plugin</artifactId>
                            <version>${clover.version}</version>
                        </plugin>
                        <plugin>
                            <groupId>org.codehaus.mojo</groupId>
                            <artifactId>findbugs-maven-plugin</artifactId>
                            <version>2.5</version>
                        </plugin>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-pmd-plugin</artifactId>
                            <version>2.7.1</version>
                            <configuration>
                                <sourceEncoding>UTF-8</sourceEncoding>
                                <targetJdk>1.5</targetJdk>
                            </configuration>
                        </plugin>
                    </reportPlugins>
                </configuration>
            </plugin>
        </plugins>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.4.1</version>
                </plugin>
                <plugin>
                    <artifactId>maven-clean-plugin</artifactId>
                    <version>2.5</version>
                </plugin>
                <plugin>
                    <artifactId>maven-deploy-plugin</artifactId>
                    <version>2.8.1</version>
                </plugin>
                <plugin>
                    <artifactId>maven-install-plugin</artifactId>
                    <version>2.5.1</version>
                </plugin>
                <plugin>
                    <artifactId>maven-jar-plugin</artifactId>
                    <version>2.4</version>
                </plugin>
                <plugin>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.6</version>
                </plugin>
                <plugin>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.16</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>

POM Entry

<dependency>
   <groupId>com.google.code.bean-matchers</groupId>
   <artifactId>bean-matchers</artifactId>
   <version>0.9</version>
</dependency>

Download

If you think the following bean-matchers-0.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download bean-matchers-0.9.jar file




PreviousNext

Related