| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | <?xml version="1.0" encoding="UTF-8"?><project>    <modelVersion>4.0.0</modelVersion>    <groupId>com.akathist.maven.plugins.launch4j</groupId>    <artifactId>launch4j-maven-plugin</artifactId>    <packaging>maven-plugin</packaging>    <name>Maven Launch4j Plugin</name>    <version>1.1-inhouse</version>    <description>This plugin creates Windows executables from Java jar files using the Launch4j utility.</description>    <url>http://9stmaryrd.com/tools/launch4j-maven-plugin/</url>    <licenses>        <license>            <name>GNU General Public License</name>            <url>http://www.gnu.org/licenses/gpl.txt</url>            <distribution>repo</distribution>        </license>    </licenses>    <build>        <extensions>            <extension>                <groupId>org.apache.maven.wagon</groupId>                <artifactId>wagon-ftp</artifactId>                <version>1.0-beta-1</version>            </extension>        </extensions>        <plugins>            <plugin>                <artifactId>maven-antrun-plugin</artifactId>                <executions>                    <execution>                        <id>copy</id>                        <phase>process-classes</phase>                        <goals>                            <goal>run</goal>                        </goals>                        <configuration>                            <tasks>                                <copy file="README" todir="target/classes"/>                                <copy file="LICENSE" todir="target/classes"/>                            </tasks>                        </configuration>                    </execution>                </executions>            </plugin>            <plugin>                <artifactId>maven-assembly-plugin</artifactId>                <executions>                    <execution>                        <id>assemble-workdir</id>                        <phase>package</phase>                        <goals>                            <goal>attached</goal>                        </goals>                        <configuration>                            <descriptors>                                <descriptor>src/main/assembly/assemble-linux.xml</descriptor>                                <descriptor>src/main/assembly/assemble-win32.xml</descriptor>                                <descriptor>src/main/assembly/assemble-mac.xml</descriptor>                                <descriptor>src/main/assembly/assemble-solaris.xml</descriptor>                            </descriptors>                        </configuration>                    </execution>                    <execution>                        <id>dist-src</id>                        <phase>package</phase>                        <goals>                            <goal>attached</goal>                        </goals>                        <configuration>                            <descriptors>                                <descriptor>src/main/assembly/src.xml</descriptor>                            </descriptors>                        </configuration>                    </execution>                </executions>            </plugin>        </plugins>    </build>    <dependencies>        <dependency>            <groupId>org.apache.maven</groupId>            <artifactId>maven-plugin-api</artifactId>            <version>[2.0,)</version>        </dependency>        <dependency>            <groupId>org.apache.maven</groupId>            <artifactId>maven-artifact</artifactId>            <version>[2.0.4,)</version>        </dependency>        <dependency>            <groupId>org.apache.maven</groupId>            <artifactId>maven-project</artifactId>            <version>[2.0.4,)</version>        </dependency>        <dependency>            <groupId>org.apache.maven</groupId>            <artifactId>maven-plugin-descriptor</artifactId>            <version>[2.0.4,)</version>        </dependency>        <dependency>            <groupId>commons-beanutils</groupId>            <artifactId>commons-beanutils</artifactId>            <version>[1.7.0,)</version>        </dependency>        <dependency>            <groupId>commons-logging</groupId>            <artifactId>commons-logging</artifactId>            <version>[1.0.4,)</version>        </dependency>        <dependency>            <groupId>ant</groupId>            <artifactId>ant</artifactId>            <version>[1.6.5,)</version>        </dependency>        <dependency>            <groupId>foxtrot</groupId>            <artifactId>foxtrot</artifactId>            <version>[2.0,)</version>        </dependency>        <dependency>            <groupId>com.thoughtworks.xstream</groupId>            <artifactId>xstream</artifactId>            <version>[1.1.3,)</version>        </dependency>        <dependency>            <groupId>org.codehaus.plexus</groupId>            <artifactId>plexus-archiver</artifactId>            <version>[1.0-alpha-6,1.0-alpha-7]</version>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>[3.8.1,)</version>            <scope>test</scope>        </dependency>    </dependencies>    <reporting>        <plugins>            <plugin>                <artifactId>maven-project-info-reports-plugin</artifactId>                <reportSets>                    <reportSet>                        <reports>                            <report>index</report>                            <report>summary</report>                            <report>license</report>                            <report>dependencies</report>                        </reports>                    </reportSet>                </reportSets>            </plugin>            <plugin>                <artifactId>maven-javadoc-plugin</artifactId>            </plugin>            <plugin>                <artifactId>maven-surefire-report-plugin</artifactId>            </plugin>        </plugins>    </reporting>    <distributionManagement>        <repository>            <id>akathist-repository</id>            <name>Akathist Repository</name>            <url>ftp://ftp.9stmaryrd.com/public_html/maven</url>        </repository>    </distributionManagement></project>
 |