Maven Repository - POM file for Parser izpack-standalone-compiler 4.0.1 4.0.1

Summary

IzPack Standalone Compiler.

standlone-compiler.jar extracting from an official IzPack Installation.

Declaration

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

<dependency>
   <groupId>org.codehaus.izpack</groupId>
   <artifactId>izpack-standalone-compiler</artifactId>
   <version>4.0.1</version>
</dependency>

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

Plugin

The following plugins are used in the izpack-standalone-compiler-4.0.1.jar

  1. maven-antrun-plugin
  2. maven-assembly-plugin




Packages

The following packages are defined in the izpack-standalone-compiler-4.0.1.jar

com.izforge.izpack
com.izforge.izpack.ant
com.izforge.izpack.compiler
com.izforge.izpack.compressor
com.izforge.izpack.event
com.izforge.izpack.gui
com.izforge.izpack.installer
com.izforge.izpack.io
com.izforge.izpack.panels
com.izforge.izpack.rules
com.izforge.izpack.uninstaller
com.izforge.izpack.util
com.izforge.izpack.util.os
com.izforge.izpack.util.os.unix
net.n3.nanoxml
org.apache.regexp
org.apache.tools.ant
org.apache.tools.ant.filters
org.apache.tools.ant.filters.util
org.apache.tools.ant.helper
org.apache.tools.ant.input
org.apache.tools.ant.listener
org.apache.tools.ant.loader
org.apache.tools.ant.taskdefs
org.apache.tools.ant.taskdefs.compilers
org.apache.tools.ant.taskdefs.condition
org.apache.tools.ant.taskdefs.cvslib
org.apache.tools.ant.taskdefs.email
org.apache.tools.ant.taskdefs.rmic
org.apache.tools.ant.types
org.apache.tools.ant.types.resolver
org.apache.tools.ant.types.selectors
org.apache.tools.ant.types.selectors.modifiedselector
org.apache.tools.ant.util
org.apache.tools.ant.util.facade
org.apache.tools.ant.util.regexp
org.apache.tools.bzip2
org.apache.tools.mail
org.apache.tools.tar
org.apache.tools.zip




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">

  <parent>
    <groupId>org.codehaus.izpack</groupId>
    <artifactId>izpack-parent</artifactId>
    <version>1</version>
    <relativePath>../izpack-parent</relativePath>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  
  <artifactId>izpack-standalone-compiler</artifactId>
  <version>4.0.1</version>
  
  <name>IzPack Standalone Compiler</name>

  <description>standlone-compiler.jar extracting from an official IzPack Installation</description>
  

  <packaging>jar</packaging>  
  
  <scm>
    <connection>scm:svn:http://svn.codehaus.org/izpack/izpack-maven/tags/izpack-standalone-compiler-4.0.1</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/izpack/izpack-maven/tags/izpack-standalone-compiler-4.0.1</developerConnection>
    <url>http://svn.codehaus.org/izpack/izpack-maven/tags/izpack-standalone-compiler-4.0.1</url>
  </scm>
  

  <distributionManagement>
    <site>
      <id>codehaus.org</id>
      <name>IZPack Website</name>
      <url>dav:https://dav.codehaus.org/izpack/izpack-standalone-compiler</url>
    </site>
  </distributionManagement>

  <!--
    Use maven to extract the standalone-compiler.jar and the associated javadoc and sources from an existing izpack installation.
    So make sure to have the IzPack installed with the same version as this pom's
  -->
  
  <build>
  
    <defaultGoal>package</defaultGoal>
    
     <plugins>
     
      <!-- user assembly to reassemble javadoc and sources jars -->
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-2</version>
        <executions>
          <execution>
            <id>package-javadoc</id>
            <goals>
              <goal>single</goal>
            </goals>
            <phase>package</phase>
            <configuration>
              <descriptors>
                <descriptor>src/main/assembly/javadoc.xml</descriptor>
              </descriptors>
            </configuration>
          </execution>
          <execution>
            <id>package-sources</id>
            <goals>
              <goal>single</goal>
            </goals>
            <phase>package</phase>
            <configuration>
              <descriptors>
                <descriptor>src/main/assembly/sources.xml</descriptor>
              </descriptors>
            </configuration>
          </execution>
        </executions>
      </plugin>
     
      <!-- copy the real standlone-compiler to this project and overwrite the implicit jar already built by the jar packaging -->
      <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
             <id>staging</id>
             <goals><goal>run</goal></goals>
             <phase>package</phase>
             <configuration>
               <tasks>
                  <copy file="${izpack.dir}/lib/standalone-compiler.jar" tofile="${project.build.directory}/${project.build.finalName}.jar" overwrite="true" />
               </tasks>
             </configuration>
           </execution>
         </executions>
       </plugin>
     </plugins>
  </build>
  
  <properties>
    <!-- change this according to your local copy of your izpack installation -->
    <izpack.dir>g:/program files/izpack</izpack.dir>
  </properties>
</project>