Download pojomatic-2.0.1.jar file

Introduction

You can download pojomatic-2.0.1.jar in this page.

License

Open Source

Type List

pojomatic-2.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.pojomatic/pojomatic/pom.properties
META-INF/maven/org.pojomatic/pojomatic/pom.xml
org.pojomatic.NoPojomaticPropertiesException.class
org.pojomatic.Pojomatic.class
org.pojomatic.Pojomator.class
org.pojomatic.PropertyElement.class
org.pojomatic.annotations.AutoDetectPolicy.class
org.pojomatic.annotations.AutoProperty.class
org.pojomatic.annotations.DefaultPojomaticPolicy.class
org.pojomatic.annotations.OverridesEquals.class
org.pojomatic.annotations.PojoFormat.class
org.pojomatic.annotations.PojomaticPolicy.class
org.pojomatic.annotations.Property.class
org.pojomatic.annotations.PropertyFormat.class
org.pojomatic.annotations.SkipArrayCheck.class
org.pojomatic.annotations.SubclassCannotOverrideEquals.class
org.pojomatic.diff.Difference.class
org.pojomatic.diff.Differences.class
org.pojomatic.diff.NoDifferences.class
org.pojomatic.diff.PropertyDifferences.class
org.pojomatic.diff.ValueDifference.class
org.pojomatic.formatter.AccountNumberFormatter.class
org.pojomatic.formatter.DefaultEnhancedPojoFormatter.class
org.pojomatic.formatter.DefaultEnhancedPropertyFormatter.class
org.pojomatic.formatter.DefaultPojoFormatter.class
org.pojomatic.formatter.DefaultPropertyFormatter.class
org.pojomatic.formatter.EnhancedPojoFormatter.class
org.pojomatic.formatter.EnhancedPropertyFormatter.class
org.pojomatic.formatter.PojoFormatter.class
org.pojomatic.formatter.PropertyFormatter.class
org.pojomatic.internal.AbstractPropertyElement.class
org.pojomatic.internal.BasePojomator.class
org.pojomatic.internal.ClassProperties.class
org.pojomatic.internal.EnhancedPojoFormatterWrapper.class
org.pojomatic.internal.EnhancedPropertyFormatterWrapper.class
org.pojomatic.internal.LocalVariable.class
org.pojomatic.internal.OverridableMethods.class
org.pojomatic.internal.PojomatorByteCodeGenerator.class
org.pojomatic.internal.PojomatorFactory.class
org.pojomatic.internal.PojomatorStub.class
org.pojomatic.internal.Primitives.class
org.pojomatic.internal.PropertyAccessor.class
org.pojomatic.internal.PropertyClassVisitor.class
org.pojomatic.internal.PropertyField.class
org.pojomatic.internal.PropertyFilter.class
org.pojomatic.internal.PropertyRole.class
org.pojomatic.internal.SelfPopulatingMap.class

Pom

pojomatic-2.0.1.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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>pojomatic-all</artifactId>
    <groupId>org.pojomatic</groupId>
    <version>2.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>pojomatic</artifactId>
  <version>2.0.1</version>
  <packaging>jar</packaging>
  <name>Pojomatic</name>
  <description>
    Automatically provides configurable implementations of the
    equals(Object), hashCode() and toString() methods inherited from java.lang.Object
  </description>
  <scm>
    <connection>scm:git:git@github.com:irobertson/pojomatic</connection>
    <developerConnection>scm:git:git@github.com:irobertson/pojomatic</developerConnection>
    <url>https://github.com/irobertson/pojomatic</url>
  </scm>

  <properties>
    <java8.build.dir>${project.build.directory}/java8-test-classes</java8.build.dir>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.kohsuke</groupId>
      <artifactId>asm5</artifactId>
      <version>5.0.1</version>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>16.0.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-core</artifactId>
        <version>1.3</version>
        <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <executions>
          <execution>
            <id>default</id>
            <goals>
              <goal>perform</goal>
            </goals>
            <configuration>
              <pomFileName>pojomatic/pom.xml</pomFileName>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-pmd-plugin</artifactId>
        <configuration>
          <targetJdk>1.7</targetJdk>
          <rulesets>
            <ruleset>${project.basedir}/src/pmd.xml</ruleset>
          </rulesets>
          <includeTests>true</includeTests>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <reportSets>
          <reportSet>
            <reports>
              <report>javadoc</report>
            </reports>
          </reportSet>
          <reportSet>
            <id>aggregate</id>
            <inherited>false</inherited>
            <reports>
              <report>aggregate</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>
  <profiles>
    <profile>
      <!-- If we are running under java8, then test both with java7 and java8 targets for test classes -->
      <id>java8</id>
      <activation>
        <activeByDefault>false</activeByDefault>
        <jdk>1.8</jdk>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
              <execution>
                <id>createThriftDir</id>
                <phase>process-resources</phase>
                <configuration>
                  <tasks>
                    <mkdir dir="${java8.build.dir}" />
                  </tasks>
                </configuration>
                <goals>
                  <goal>run</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>java-8-compile</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>testCompile</goal>
                </goals>
                <configuration>
                  <source>1.8</source>
                  <target>1.8</target>
                  <compilerArguments>
                    <d>${java8.build.dir}</d>
                  </compilerArguments>
                  <useIncrementalCompilation>true</useIncrementalCompilation>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <executions>
              <execution>
            <id>java-8-test</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <testClassesDirectory>${java8.build.dir}</testClassesDirectory>
              <reportsDirectory>${project.build.directory}/java8-surefire-reports</reportsDirectory>
            </configuration>
          </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.pojomatic</groupId>
   <artifactId>pojomatic</artifactId>
   <version>2.0.1</version>
</dependency>

Download

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



Download pojomatic-2.0.1.jar file




PreviousNext

Related