Download paranamer-2.6.jar file

Introduction

You can download paranamer-2.6.jar in this page.

License

Open Source

Type List

paranamer-2.6.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.thoughtworks.paranamer/paranamer/pom.properties
META-INF/maven/com.thoughtworks.paranamer/paranamer/pom.xml
com.thoughtworks.paranamer.AdaptiveParanamer.class
com.thoughtworks.paranamer.AnnotationParanamer.class
com.thoughtworks.paranamer.BytecodeReadingParanamer.class
com.thoughtworks.paranamer.CachingParanamer.class
com.thoughtworks.paranamer.DefaultParanamer.class
com.thoughtworks.paranamer.JavadocParanamer.class
com.thoughtworks.paranamer.NullParanamer.class
com.thoughtworks.paranamer.ParameterNamesNotFoundException.class
com.thoughtworks.paranamer.Paranamer.class
com.thoughtworks.paranamer.PositionalParanamer.class

Pom

paranamer-2.6.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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.thoughtworks.paranamer</groupId>
    <artifactId>paranamer-parent</artifactId>
    <version>2.6</version>
  </parent>
  <artifactId>paranamer</artifactId>
  <name>ParaNamer Core</name>
  <dependencies>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>javax.inject</groupId>
        <artifactId>javax.inject</artifactId>
        <version>1</version>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>net.sourceforge.f2j</groupId>
        <artifactId>arpack_combined_all</artifactId>
        <version>0.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>net.sourceforge.f2j</groupId>
        <artifactId>arpack_combined_all</artifactId>
        <version>0.1</version>
        <classifier>javadoc</classifier>
        <scope>test</scope>
    </dependency>
      <dependency>
          <groupId>${groupId}</groupId>
          <artifactId>${artifactId}</artifactId>
          <version>2.5.5</version>
          <classifier>javadoc</classifier>
          <scope>test</scope>
      </dependency>
  </dependencies>
  <build>
    <plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-source-plugin</artifactId>
			<executions>
				<execution>
					<id>attach-sources</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-javadoc-plugin</artifactId>
			<executions>
				<execution>
					<id>attach-javadocs</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>
      <plugin>
        <groupId>com.thoughtworks.paranamer</groupId>
        <artifactId>paranamer-maven-plugin</artifactId>
        <executions>
          <execution>
            <phase>compile</phase>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <sourceDirectory>${pom.build.sourceDirectory}</sourceDirectory>
          <outputDirectory>${pom.build.outputDirectory}</outputDirectory>
        </configuration>
      </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                <execution>
                    <id>javadocs</id>
                    <phase>test-compile</phase>
                    <goals>
                        <goal>copy-dependencies</goal>
                    </goals>
                    <configuration>
                        <excludeTransitive>true</excludeTransitive>
                        <classifier>javadoc</classifier>
                        <includeGroupIds>net.sourceforge.f2j,${groupId}</includeGroupIds>
                        <includeArtifactIds>arpack_combined_all,${artifactId}</includeArtifactIds>
                        <failOnMissingClassifierArtifact>true</failOnMissingClassifierArtifact>
                        <outputDirectory>${project.build.directory}/test-data</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
    <pluginManagement>
      <plugins>
        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
        <plugin>
          <groupId>org.eclipse.m2e</groupId>
          <artifactId>lifecycle-mapping</artifactId>
          <version>1.0.0</version>
          <configuration>
            <lifecycleMappingMetadata>
              <pluginExecutions>
                <pluginExecution>
                  <pluginExecutionFilter>
                    <groupId>com.thoughtworks.paranamer</groupId>
                    <artifactId>paranamer-maven-plugin</artifactId>
                    <versionRange>[2.4.1,)</versionRange>
                    <goals>
                      <goal>generate</goal>
                    </goals>
                  </pluginExecutionFilter>
                  <action>
                    <ignore />
                  </action>
                </pluginExecution>
              </pluginExecutions>
            </lifecycleMappingMetadata>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

POM Entry

<dependency>
   <groupId>com.thoughtworks.paranamer</groupId>
   <artifactId>paranamer</artifactId>
   <version>2.6</version>
</dependency>

Download

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



Download paranamer-2.6.jar file




PreviousNext

Related