Download quickbuilder-1.2.jar file

Introduction

You can download quickbuilder-1.2.jar in this page.

License

The Apache Software License, Version 2.0

Type List

quickbuilder-1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.gentyref/gentyref/pom.properties
META-INF/maven/com.googlecode.gentyref/gentyref/pom.xml
META-INF/maven/org.pitest.quickbuilder/quickbuilder/pom.properties
META-INF/maven/org.pitest.quickbuilder/quickbuilder/pom.xml
org.pitest.quickbuilder.Builder.class
org.pitest.quickbuilder.Conversion.class
org.pitest.quickbuilder.Generator.class
org.pitest.quickbuilder.Maybe.class
org.pitest.quickbuilder.NoValueAvailableError.class
org.pitest.quickbuilder.QuickBuilderError.class
org.pitest.quickbuilder.SequenceBuilder.class
org.pitest.quickbuilder.builders.Builders.class
org.pitest.quickbuilder.builders.QB.class
org.pitest.quickbuilder.common.AsString.class
org.pitest.quickbuilder.common.BuilderIterable.class
org.pitest.quickbuilder.common.BuilderIterator.class
org.pitest.quickbuilder.common.ComposedBuilder.class
org.pitest.quickbuilder.common.ConstantBuilder.class
org.pitest.quickbuilder.common.ConvertingBuilder.class
org.pitest.quickbuilder.common.ElementSequence.class
org.pitest.quickbuilder.common.Integers.class
org.pitest.quickbuilder.common.LimitingBuilder.class
org.pitest.quickbuilder.common.NonBuilder.class
org.pitest.quickbuilder.common.NullBuilder.class
org.pitest.quickbuilder.common.RepeatedBuilder.class
org.pitest.quickbuilder.common.SequenceWrapper.class
org.pitest.quickbuilder.common.Sequences.class
org.pitest.quickbuilder.internal.BuilderBuilder.class
org.pitest.quickbuilder.internal.BuilderImplementation.class
org.pitest.quickbuilder.internal.Property.class
org.pitest.quickbuilder.internal.QBLoader.class
org.pitest.quickbuilder.internal.Setter.class
org.pitest.quickbuilder.internal.StringUtils.class
org.pitest.quickbuilder.internal.TypeName.class
org.pitest.quickbuilder.internal.TypeScanner.class
org.pitest.quickbuilder.reloc.asm.AnnotationVisitor.class
org.pitest.quickbuilder.reloc.asm.AnnotationWriter.class
org.pitest.quickbuilder.reloc.asm.Attribute.class
org.pitest.quickbuilder.reloc.asm.ByteVector.class
org.pitest.quickbuilder.reloc.asm.ClassReader.class
org.pitest.quickbuilder.reloc.asm.ClassVisitor.class
org.pitest.quickbuilder.reloc.asm.ClassWriter.class
org.pitest.quickbuilder.reloc.asm.Context.class
org.pitest.quickbuilder.reloc.asm.Edge.class
org.pitest.quickbuilder.reloc.asm.FieldVisitor.class
org.pitest.quickbuilder.reloc.asm.FieldWriter.class
org.pitest.quickbuilder.reloc.asm.Frame.class
org.pitest.quickbuilder.reloc.asm.Handle.class
org.pitest.quickbuilder.reloc.asm.Handler.class
org.pitest.quickbuilder.reloc.asm.Item.class
org.pitest.quickbuilder.reloc.asm.Label.class
org.pitest.quickbuilder.reloc.asm.MethodVisitor.class
org.pitest.quickbuilder.reloc.asm.MethodWriter.class
org.pitest.quickbuilder.reloc.asm.Opcodes.class
org.pitest.quickbuilder.reloc.asm.Type.class
org.pitest.quickbuilder.reloc.asm.TypePath.class
org.pitest.quickbuilder.reloc.asm.TypeReference.class
org.pitest.quickbuilder.reloc.asm.signature.SignatureReader.class
org.pitest.quickbuilder.reloc.asm.signature.SignatureVisitor.class
org.pitest.quickbuilder.reloc.asm.signature.SignatureWriter.class
org.pitest.quickbuilder.reloc.gentyref.CaptureType.class
org.pitest.quickbuilder.reloc.gentyref.CaptureTypeImpl.class
org.pitest.quickbuilder.reloc.gentyref.GenericArrayTypeImpl.class
org.pitest.quickbuilder.reloc.gentyref.GenericTypeReflector.class
org.pitest.quickbuilder.reloc.gentyref.ParameterizedTypeImpl.class
org.pitest.quickbuilder.reloc.gentyref.TypeToken.class
org.pitest.quickbuilder.reloc.gentyref.VarMap.class
org.pitest.quickbuilder.reloc.gentyref.WildcardTypeImpl.class

Pom

quickbuilder-1.2.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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>oss-parent</artifactId>
    <groupId>org.sonatype.oss</groupId>
    <version>7</version>
    <relativePath>pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.pitest.quickbuilder</groupId>
  <artifactId>quickbuilder</artifactId>
  <version>1.2</version>
  <description>Generates implementations of the Builder Pattern at runtime.</description>
  <url>http://pitest.org</url>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/hcoles/QuickBuilder/issues</url>
  </issueManagement>
  <developers>
    <developer>
      <id>henry</id>
      <name>Henry Coles</name>
      <email>henry@pitest.org</email>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:hcoles/QuickBuilder.git</connection>
    <developerConnection>scm:git:git@github.com:hcoles/QuickBuilder.git</developerConnection>
    <url>https://github.com/hcoles/QuickBuilder</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.pitest</groupId>
        <artifactId>pitest-maven</artifactId>
        <version>0.33</version>
        <executions>
          <execution>
            <id>verify</id>
            <phase>verify</phase>
            <goals>
              <goal>mutationCoverage</goal>
            </goals>
            <configuration>
              <timestampedReports>false</timestampedReports>
              <threads>2</threads>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.pitest</groupId>
        <artifactId>classycle-maven-plugin</artifactId>
        <version>0.4</version>
        <executions>
          <execution>
            <id>verify</id>
            <phase>verify</phase>
            <goals>
              <goal>check</goal>
            </goals>
            <configuration>
              <dependencyDefinition>show allResults
                                check absenceOfPackageCycles &gt; 1 in org.pitest.quickbuilder.*</dependencyDefinition>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>org.ow2.asm:*</include>
                  <include>com.googlecode.gentyref:*</include>
                </includes>
              </artifactSet>
              <transformers>
                <transformer />
              </transformers>
              <relocations>
                <relocation>
                  <pattern>org.objectweb.asm</pattern>
                  <shadedPattern>org.pitest.quickbuilder.reloc.asm</shadedPattern>
                </relocation>
                <relocation>
                  <pattern>com.googlecode.gentyref</pattern>
                  <shadedPattern>org.pitest.quickbuilder.reloc.gentyref</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.8.1</version>
        <executions>
          <execution>
            <id>javadoc</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>1.5.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.pitest.quickbuilder</groupId>
   <artifactId>quickbuilder</artifactId>
   <version>1.2</version>
</dependency>

Download

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



Download quickbuilder-1.2.jar file




PreviousNext

Related