Maven Repository - POM file for Byte Code retrotranslator-transformer 1.2.1 1.2.1

Summary

Retrotranslator Transformer.

Java 5.0 to Java 1.4 bytecode transformer.

Declaration

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

<dependency>
   <groupId>net.sf.retrotranslator</groupId>
   <artifactId>retrotranslator-transformer</artifactId>
   <version>1.2.1</version>
</dependency>

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

License

Name:BSD-style license
URL: http://retrotranslator.sourceforge.net/LICENSE.txt.

Depends on

The retrotranslator-transformer-1.2.1 has 4 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
Byte Coderetrotranslator-runtime 1.2.1
Library classes for bytecode transformed by Retrotranslator
23
Java Librarybackport-util-concurrent 3.0
Dawid Kurzyniec's backport of JSR 166
101
JUnitjunit 3.8.1
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.
1966




Packages

The following packages are defined in the retrotranslator-transformer-1.2.1.jar

net.sf.retrotranslator.transformer

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>net.sf.retrotranslator</groupId>
    <artifactId>retrotranslator-transformer</artifactId>
    <packaging>jar</packaging>
    <version>1.2.1</version>
    <name>Retrotranslator Transformer</name>
    <url>http://retrotranslator.sourceforge.net/</url>
    <description>Java 5.0 to Java 1.4 bytecode transformer</description>
    <licenses>
        <license>
            <name>BSD-style license</name>
            <url>http://retrotranslator.sourceforge.net/LICENSE.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <organization>
        <name>Taras Puchko</name>
        <url>http://sourceforge.net/users/tarasp/</url>
    </organization>
    <scm>
        <url>http://cvs.sourceforge.net/viewcvs.py/retrotranslator/</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>net.sf.retrotranslator</groupId>
            <artifactId>retrotranslator-runtime</artifactId>
            <version>1.2.1</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>backport-util-concurrent</groupId>
            <artifactId>backport-util-concurrent</artifactId>
            <version>3.0</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>