Author: niallp
Date: Fri Nov 16 06:45:09 2007
New Revision: 595684
URL: http://svn.apache.org/viewvc?rev=595684&view=rev
Log:
Add m2 build
Added:
commons/proper/launcher/trunk/pom.xml (with props)
commons/proper/launcher/trunk/src/assembly/
commons/proper/launcher/trunk/src/assembly/bin.xml (with props)
commons/proper/launcher/trunk/src/assembly/src.xml (with props)
commons/proper/launcher/trunk/src/site/
commons/proper/launcher/trunk/src/site/resources/
commons/proper/launcher/trunk/src/site/resources/images/
- copied from r595528, commons/proper/launcher/trunk/xdocs/images/
commons/proper/launcher/trunk/src/site/site.xml (with props)
Added: commons/proper/launcher/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/launcher/trunk/pom.xml?rev=595684&view=auto
==============================================================================
--- commons/proper/launcher/trunk/pom.xml (added)
+++ commons/proper/launcher/trunk/pom.xml Fri Nov 16 06:45:09 2007
@@ -0,0 +1,125 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<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.apache.commons</groupId>
+ <artifactId>commons-parent</artifactId>
+ <version>5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>commons-launcher</groupId>
+ <artifactId>commons-launcher</artifactId>
+ <version>1.2-SNAPSHOT</version>
+ <name>Commons Launcher</name>
+ <inceptionYear>2002</inceptionYear>
+ <description>
+ Launcher are a set of Java classes which aim at making a cross
+ platform Java application launcher.
+ </description>
+ <url>http://commons.apache.org/launcher/</url>
+
+ <issueManagement>
+ <system>jira</system>
+ <url>http://issues.apache.org/jira/browse/LAUNCHER</url>
+ </issueManagement>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/launcher/trunk</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/launcher/trunk</developerConnection>
+ <url>http://svn.apache.org/viewvc/commons/proper/launcher/trunk</url>
+ </scm>
+
+ <developers>
+ <developer>
+ <name>Patrick Luby</name>
+ <id>patrickl</id>
+ </developer>
+ <developer>
+ <name>Costin Manolache</name>
+ <id>costin</id>
+ </developer>
+ <developer>
+ <name>Remy Maucherat</name>
+ <id>remm</id>
+ </developer>
+ <developer>
+ <name>Jean-Frederic Clere</name>
+ <id>jfclere</id>
+ </developer>
+ <developer>
+ <name>Dirk Verbeeck</name>
+ <id>dirkv</id>
+ </developer>
+ </developers>
+ <contributors>
+ <contributor>
+ <name>Alban Peignier</name>
+ </contributor>
+ </contributors>
+
+ <dependencies>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.5.3-1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-optional</artifactId>
+ <version>1.5.3-1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <sourceDirectory>src/java</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>NOTICE.txt</include>
+ <include>LICENSE.txt</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/assembly/bin.xml</descriptor>
+ <descriptor>src/assembly/src.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange: commons/proper/launcher/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/launcher/trunk/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/launcher/trunk/src/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/commons/proper/launcher/trunk/src/assembly/bin.xml?rev=595684&view=auto
==============================================================================
--- commons/proper/launcher/trunk/src/assembly/bin.xml (added)
+++ commons/proper/launcher/trunk/src/assembly/bin.xml Fri Nov 16 06:45:09 2007
@@ -0,0 +1,54 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<assembly>
+ <id>bin</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <includeSiteDirectory>false</includeSiteDirectory>
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>LICENSE.txt</include>
+ <include>NOTICE.txt</include>
+ <include>README.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>src/bin</directory>
+ <outputDirectory>bin</outputDirectory>
+ <includes>
+ <include>launcher.properties</include>
+ <include>launcher.xml</include>
+ <include>launch-ant.bat</include>
+ <include>launch-ant.sh</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/apidocs</directory>
+ <outputDirectory>apidocs</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/launcher/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/launcher/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/launcher/trunk/src/assembly/src.xml
URL:
http://svn.apache.org/viewvc/commons/proper/launcher/trunk/src/assembly/src.xml?rev=595684&view=auto
==============================================================================
--- commons/proper/launcher/trunk/src/assembly/src.xml (added)
+++ commons/proper/launcher/trunk/src/assembly/src.xml Fri Nov 16 06:45:09 2007
@@ -0,0 +1,51 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<assembly>
+ <id>src</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <baseDirectory>${artifactId}-${version}-src</baseDirectory>
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>build.properties.sample</include>
+ <include>build.xml</include>
+ <include>checkstyle.xml</include>
+ <include>default.properties</include>
+ <include>LICENSE.txt</include>
+ <include>maven.xml</include>
+ <include>NOTICE.txt</include>
+ <include>pom.xml</include>
+ <include>project.properties</include>
+ <include>project.xml</include>
+ <include>RELEASE-NOTES.txt</include>
+ <include>README.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>example</directory>
+ </fileSet>
+ <fileSet>
+ <directory>src</directory>
+ </fileSet>
+ <fileSet>
+ <directory>xdocs</directory>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/launcher/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/launcher/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/launcher/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/launcher/trunk/src/site/site.xml?rev=595684&view=auto
==============================================================================
--- commons/proper/launcher/trunk/src/site/site.xml (added)
+++ commons/proper/launcher/trunk/src/site/site.xml Fri Nov 16 06:45:09 2007
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project name="Launcher">
+ <bannerRight>
+ <name>Commons Launcher</name>
+ <src>/images/launcher-logo-white.png</src>
+ <href>/index.html</href>
+ </bannerRight>
+
+ <body>
+ <menu name="Launcher">
+ <item name="Overview" href="/index.html" />
+ <item name="Example" href="/example.html"/>
+ <item name="Download"
href="http://commons.apache.org/downloads/download_launcher.cgi"/>
+ <item name="Dependencies" href="/dependencies.html"/>
+ <item name="License" href="/license.html"/>
+ <item name="Wiki"
href="http://wiki.apache.org/commons/Launcher"/>
+ </menu>
+
+ <menu name="1.1 Release">
+ <item name="Release Notes"
href="/release-notes-1.1.html"/>
+ <item name="JavaDoc"
href="http://commons.apache.org/launcher/api-1.1/"/>
+ </menu>
+
+ <menu name="Development">
+ <item name="Building" href="/building.html"/>
+ <item name="Mailing Lists" href="/mail-lists.html"/>
+ <item name="Issue Tracking" href="/issue-tracking.html"/>
+ <item name="Source Repository"
href="/source-repository.html"/>
+ <item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
+ </menu>
+
+ </body>
+
+</project>
Propchange: commons/proper/launcher/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/launcher/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL