Maven Repository - POM file for Library jtype 0.1.0 0.1.0

Summary

JType.

Library for working with the Java 5 type system.

Declaration

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

<dependency>
   <groupId>com.googlecode.jtype</groupId>
   <artifactId>jtype</artifactId>
   <version>0.1.0</version>
</dependency>

If you think this Maven repository POM file listing for jtype 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 jtype-0.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 4.5
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.
385




Plugin

The following plugins are used in the jtype-0.1.0.jar

  1. maven-javadoc-plugin
  2. maven-project-info-reports-plugin

Packages

The following packages are defined in the jtype-0.1.0.jar

com.googlecode.jtype

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>

<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.jtype</groupId>
  <artifactId>jtype</artifactId>
  <packaging>jar</packaging>
  <version>0.1.0</version>
  
  <name>JType</name>
  <description>Library for working with the Java 5 type system</description>
  <url>http://jtype.googlecode.com/</url>
  <inceptionYear>2008</inceptionYear>
  
  <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://jtype.googlecode.com/svn/tags/0.1.0</connection>
    <developerConnection>scm:svn:https://jtype.googlecode.com/svn/tags/0.1.0</developerConnection>
    <url>http://code.google.com/p/jtype/source/browse/tags/0.1.0</url>
  </scm>
  
  <issueManagement>
    <system>Google Code</system>
    <url>http://code.google.com/p/jtype/issues/list</url>
  </issueManagement>
  
  
  
  <build>
    <extensions>
      <extension>
        <groupId>org.jvnet.wagon-svn</groupId>
        <artifactId>wagon-svn</artifactId>
        <version>1.9</version>
      </extension>
    </extensions>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.0.2</version>
          <configuration>
            <encoding>UTF-8</encoding>
            <source>1.5</source>
            <target>1.5</target>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-resources-plugin</artifactId>
          <version>2.3</version>
          <configuration>
            <encoding>UTF-8</encoding>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-site-plugin</artifactId>
          <version>2.0</version>
          <configuration>
            <inputEncoding>UTF-8</inputEncoding>
            <outputEncoding>UTF-8</outputEncoding>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.1.1</version>
        <reportSets>
          <reportSet />
        </reportSets>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.5</version>
        <reportSets>
          <reportSet>
            <reports>
              <report>javadoc</report>
            </reports>
          </reportSet>
        </reportSets>
        <configuration>
          <encoding>UTF-8</encoding>
          <docencoding>UTF-8</docencoding>
          <charset>UTF-8</charset>
          <links>
            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
          </links>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

  <distributionManagement>
    <repository>
      <id>jtype</id>
      <name>JType Maven Repository</name>
      <url>svn:https://jtype.googlecode.com/svn/repository/</url>
    </repository>
    <site>
      <id>jtype-site</id>
      <name>JType Maven Site</name>
      <url>svn:https://jtype.googlecode.com/svn/site/</url>
    </site>
  </distributionManagement>

</project>