组织ID: |
com.thoughtworks.paranamer |
项目ID: |
paranamer |
版本: |
2.2.1-debug8 |
最后修改时间: |
2019-11-03 01:01:15 |
包类型: |
jar |
标题: |
ParaNamer Core |
相关URL: |
http://git.codehaus.org/gitweb.cgi?p=paranamer-git.git |
大小: |
26.72KB |
|
Maven引入代码: |
<dependency>
<groupId>com.thoughtworks.paranamer</groupId>
<artifactId>paranamer</artifactId>
<version>2.2.1-debug8</version>
</dependency>
|
Gradle引入代码: |
com.thoughtworks.paranamer:paranamer:2.2.1-debug8
|
下载Jar包: |
|
POM文件内容: |
<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>
<groupId>com.thoughtworks.paranamer</groupId>
<artifactId>paranamer</artifactId>
<name>ParaNamer Core</name>
<version>2.2.1-debug8</version>
<dependencies>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<resources>
<resource>
<directory>src/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<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-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptor>src/main/assembly/dep.xml</descriptor>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
<link>http://qdox.codehaus.org/apidocs/</link>
</links>
<linksource>true</linksource>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<forkMode>once</forkMode>
<printSummary>true</printSummary>
<useFile>true</useFile>
<systemProperties>
<property>
<name>test.src.dir</name>
<value>${basedir}/src/test</value>
</property>
</systemProperties>
<excludes>
<exclude>**/JavadocParanamerTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.2</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.2</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
<goals>deploy</goals>
<tagBase>https://svn.codehaus.org/paranamer/tags</tagBase>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>project-team</report>
<report>license</report>
<!--<report>scm</report>-->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<scm>
<connection>scm:git:ssh://git@git.codehaus.org/paranamer-git.git</connection>
<developerConnection>scm:git:ssh://git@git.codehaus.org/paranamer-git.git</developerConnection>
<url>http://git.codehaus.org/gitweb.cgi?p=paranamer-git.git</url>
</scm>
<licenses>
<license>
<name>Public Domain</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<distributionManagement>
<repository>
<id>codehaus.org</id>
<name>ParaNamer Repository</name>
<url>dav:https://dav.codehaus.org/repository/paranamer/</url>
</repository>
<snapshotRepository>
<id>codehaus.org</id>
<name>ParaNamer Snapshots Repository</name>
<url> dav:https://dav.codehaus.org/snapshots.repository/paranamer/ </url>
</snapshotRepository>
<site>
<id>codehaus.org</id>
<name>ParaNamer site</name>
<url>dav:https://dav.codehaus.org/paranamer/info/</url>
</site>
</distributionManagement>
<developers>
<developer>
<id>paul</id>
<name>Paul Hammant</name>
<email>paul@hammant.org</email>
<roles>
<role>administrator</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
<developer>
<id>mauro</id>
<name>Mauro Talevi</name>
<roles>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
<developer>
<id>gas</id>
<name>Guilherme Silveira</name>
<roles>
<role>developer</role>
</roles>
<timezone>-3</timezone>
</developer>
</developers>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.thoughtworks.paranamer.AdaptiveParanamer.class
com.thoughtworks.paranamer.AnnotationParanamer$Jsr330Helper.class
com.thoughtworks.paranamer.AnnotationParanamer.class
com.thoughtworks.paranamer.BytecodeReadingParanamer$1.class
com.thoughtworks.paranamer.BytecodeReadingParanamer$MethodCollector$1.class
com.thoughtworks.paranamer.BytecodeReadingParanamer$MethodCollector.class
com.thoughtworks.paranamer.BytecodeReadingParanamer$TypeCollector$1.class
com.thoughtworks.paranamer.BytecodeReadingParanamer$TypeCollector.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
META-INF/maven/com.thoughtworks.paranamer/paranamer/pom.xml
META-INF/maven/com.thoughtworks.paranamer/paranamer/pom.properties
|
依赖Jar: |
jmock-2.5.1.jar
/org.jmock/jmock/2.5.1
查看jmock所有版本文件
jmock-junit4-2.5.1.jar
/org.jmock/jmock-junit4/2.5.1
查看jmock-junit4所有版本文件
javax.inject-1.jar
/javax.inject/javax.inject/1
查看javax.inject所有版本文件
asm-3.2.jar
/asm/asm/3.2
查看asm所有版本文件
|