Maven Repository - POM file for Development gentyref 1.1.0 1.1.0

Summary

GenTyRef.

Generic type reflection library.

Declaration

Here is the list of declaration for gentyref. If you use Maven you can use the following code to add the dependency for this POM file.

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

If you think this Maven repository POM file listing for gentyref is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The gentyref-1.1.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.2
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
555




Depended by

The following table lists the most popular artifacts which are depending on gentyref-1.1.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
LibraryAnalyzerBeans-core 0.20
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
17
LibraryAnalyzerBeans-core 0.11
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
8
LibraryAnalyzerBeans-core 0.15
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
9
LibraryAnalyzerBeans-core 0.17
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
15
LibraryAnalyzerBeans-core 0.9
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
9
LibraryAnalyzerBeans-core 0.21
Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs
17

Plugin

The following plugins are used in the gentyref-1.1.0.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin
  3. maven-javadoc-plugin
  4. maven-source-plugin




Packages

The following packages are defined in the gentyref-1.1.0.jar

com.googlecode.gentyref

POM File Source

Here is the content of the POM file.

<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.1.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:svn:http://gentyref.googlecode.com/svn/trunk/</connection>
    <developerConnection>https://gentyref.googlecode.com/svn/trunk/</developerConnection>
    <url>http://code.google.com/p/gentyref/source</url>
  </scm>
  <issueManagement>
    <system>Google Code Issue Tracking</system>
    <url>http://code.google.com/p/gentyref/issues/list</url>
  </issueManagement>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <defaultGoal>package</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <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>
        <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>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <links>
            <link>http://java.sun.com/j2se/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>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <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>
  
</project>