Download gentyref-1.2.0.jar file

Introduction

You can download gentyref-1.2.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

gentyref-1.2.0.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
com.googlecode.gentyref.CaptureType.class
com.googlecode.gentyref.CaptureTypeImpl.class
com.googlecode.gentyref.GenericArrayTypeImpl.class
com.googlecode.gentyref.GenericTypeReflector.class
com.googlecode.gentyref.ParameterizedTypeImpl.class
com.googlecode.gentyref.TypeArgumentNotInBoundException.class
com.googlecode.gentyref.TypeFactory.class
com.googlecode.gentyref.TypeToken.class
com.googlecode.gentyref.UnresolvedTypeVariableException.class
com.googlecode.gentyref.VarMap.class
com.googlecode.gentyref.WildcardTypeImpl.class

Pom

gentyref-1.2.0.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>
	<groupId>com.googlecode.gentyref</groupId>
	<artifactId>gentyref</artifactId>
	<packaging>jar</packaging>
	<version>1.2.0</version>
	<inceptionYear>2008</inceptionYear>
	<name>GenTyRef</name>
	<url>http://code.google.com/p/gentyref/</url>
	<description>Generic type reflection library</description>
	<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://code.google.com/p/gentyref/</connection>
		<developerConnection>scm:git:https://code.google.com/p/gentyref/</developerConnection>
		<url>http://code.google.com/p/gentyref/source</url>
	  <tag>v1.2.0</tag>
  </scm>
	<distributionManagement>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Nexus Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>sonatype-nexus-staging</id>
			<name>Nexus Release Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
		</repository>
	</distributionManagement>
	<issueManagement>
		<system>Google Code Issue Tracking</system>
		<url>http://code.google.com/p/gentyref/issues/list</url>
	</issueManagement>
	
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<defaultGoal>package</defaultGoal>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
        <version>2.5</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.10.1</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<links>
						<link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
					</links>
					<version>true</version>
					<show>public</show>
				</configuration>
			</plugin>

		</plugins>
	</build>
	<profiles>
		<profile>
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-release-plugin</artifactId>
						<version>2.5.1</version>
						<configuration>
							<pushChanges>false</pushChanges>
							<tagNameFormat>v@{project.version}</tagNameFormat>
						</configuration>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
            <version>1.5</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
						<configuration>
							<useAgent>true</useAgent>
						</configuration>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
	<developers>
		<developer>
			<name>Wouter Coekaerts</name>
			<email>wouter@coekaerts.be</email>
		</developer>
	</developers>
</project>

POM Entry

<dependency>
   <groupId>com.googlecode.gentyref</groupId>
   <artifactId>gentyref</artifactId>
   <version>1.2.0</version>
</dependency>

Download

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



Download gentyref-1.2.0.jar file




PreviousNext

Related