Download jsr292-mock-1.1.jar file

Introduction

You can download jsr292-mock-1.1.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jsr292-mock-1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.headius/jsr292-mock/pom.properties
META-INF/maven/com.headius/jsr292-mock/pom.xml
java.lang.ClassValue.class
java.lang.invoke.AbstractValidatingLambdaMetafactory.class
java.lang.invoke.BoundMethodHandle.class
java.lang.invoke.CallSite.class
java.lang.invoke.ConstantCallSite.class
java.lang.invoke.DirectMethodHandle.class
java.lang.invoke.DontInline.class
java.lang.invoke.ForceInline.class
java.lang.invoke.InnerClassLambdaMetafactory.class
java.lang.invoke.InvokeDynamic.class
java.lang.invoke.InvokeGeneric.class
java.lang.invoke.InvokerBytecodeGenerator.class
java.lang.invoke.Invokers.class
java.lang.invoke.LambdaConversionException.class
java.lang.invoke.LambdaForm.class
java.lang.invoke.LambdaMetafactory.class
java.lang.invoke.MagicLambdaImpl.class
java.lang.invoke.MemberName.class
java.lang.invoke.MethodHandle.class
java.lang.invoke.MethodHandleImpl.class
java.lang.invoke.MethodHandleInfo.class
java.lang.invoke.MethodHandleNatives.class
java.lang.invoke.MethodHandleProxies.class
java.lang.invoke.MethodHandleStatics.class
java.lang.invoke.MethodHandles.class
java.lang.invoke.MethodType.class
java.lang.invoke.MethodTypeForm.class
java.lang.invoke.MutableCallSite.class
java.lang.invoke.SerializedLambda.class
java.lang.invoke.SimpleMethodHandle.class
java.lang.invoke.SwitchPoint.class
java.lang.invoke.TypeConvertingMethodAdapter.class
java.lang.invoke.VolatileCallSite.class
java.lang.invoke.WrongMethodTypeException.class
sun.invoke.WrapperInstance.class
sun.invoke.anon.AnonymousClassLoader.class
sun.invoke.anon.ConstantPoolParser.class
sun.invoke.anon.ConstantPoolPatch.class
sun.invoke.anon.ConstantPoolVisitor.class
sun.invoke.anon.InvalidConstantPoolFormatException.class
sun.invoke.empty.Empty.class
sun.invoke.util.BytecodeDescriptor.class
sun.invoke.util.BytecodeName.class
sun.invoke.util.ValueConversions.class
sun.invoke.util.VerifyAccess.class
sun.invoke.util.VerifyType.class
sun.invoke.util.Wrapper.class

Pom

jsr292-mock-1.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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.headius</groupId>
  <artifactId>jsr292-mock</artifactId>
  <version>1.1</version>
  <packaging>jar</packaging>

  <name>jsr292-mock</name>
  <url>https://github.com/headius/jsr292-mock</url>
  
  <repositories>
    <repository>
      <id>sonatype</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <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:https://github.com/headius/jsr292-mock.git</connection>
    <developerConnection>scm:git:git@github.com:headius/jsr292-mock.git</developerConnection>
    <url>https://github.com/headius/jsr292-mock</url>
  </scm>

  <developers>
    <developer>
      <id>headius</id>
      <name>Charles Nutter</name>
      <email>headius@headius.com</email>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-debug-all</artifactId>
      <version>5.0_BETA</version>
      <type>jar</type>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <generated.sources>${project.basedir}/target/generated-sources</generated.sources>
  </properties>

  <build>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <excludes>
          <exclude>jsr292-mock.xml</exclude>
        </excludes>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
          <encoding>${project.build.sourceEncoding}</encoding>
          <useIncrementalCompilation>false</useIncrementalCompilation>
        </configuration>
        <executions>
          <execution>
            <id>compile-mock-generator</id>
            <phase>process-resources</phase>
            <goals>
              <goal>compile</goal>
            </goals>
            <configuration>
              <includes>
                <include>com/headius/jsr292mock/Mock.java</include>
              </includes>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
          <execution>
            <id>generate-mock</id>
            <phase>process-classes</phase>
            <goals>
              <goal>exec</goal>
            </goals>
            <configuration>
              <arguments>
                <argument>-classpath</argument>
                <classpath />
                <argument>com.headius.jsr292mock.Mock</argument>
                <argument>src/main/resources/jsr292-mock.xml</argument>
                <argument>${project.build.outputDirectory}</argument>
              </arguments>
              <executable>java</executable>
              <classpathScope>compile</classpathScope>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <executions>
          <execution>
            <id>default-jar</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <excludes>
                <exclude>com/headius/jsr292mock/**/*</exclude>
              </excludes>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>com.headius</groupId>
   <artifactId>jsr292-mock</artifactId>
   <version>1.1</version>
</dependency>

Download

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



Download jsr292-mock-1.1.jar file




PreviousNext

Related