Author: niallp
Date: Thu Nov 8 07:31:10 2007
New Revision: 593199
URL: http://svn.apache.org/viewvc?rev=593199&view=rev
Log:
Add m2 assembly and site descriptors
Added:
commons/proper/configuration/trunk/src/assembly/
commons/proper/configuration/trunk/src/assembly/bin.xml (with props)
commons/proper/configuration/trunk/src/assembly/src.xml (with props)
commons/proper/configuration/trunk/src/site/
commons/proper/configuration/trunk/src/site/resources/
commons/proper/configuration/trunk/src/site/resources/images/
- copied from r587899, commons/proper/configuration/trunk/xdocs/images/
commons/proper/configuration/trunk/src/site/resources/images/logo.png
- copied unchanged from r593195,
commons/proper/configuration/trunk/xdocs/images/logo.png
commons/proper/configuration/trunk/src/site/site.xml (with props)
Modified:
commons/proper/configuration/trunk/pom.xml
Modified: commons/proper/configuration/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=593199&r1=593198&r2=593199&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Thu Nov 8 07:31:10 2007
@@ -424,6 +424,16 @@
</systemProperties>
</configuration>
</plugin>
+ <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>
Added: commons/proper/configuration/trunk/src/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/assembly/bin.xml?rev=593199&view=auto
==============================================================================
--- commons/proper/configuration/trunk/src/assembly/bin.xml (added)
+++ commons/proper/configuration/trunk/src/assembly/bin.xml Thu Nov 8 07:31:10
2007
@@ -0,0 +1,40 @@
+<!--
+ 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>true</includeSiteDirectory>
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>LICENSE.txt</include>
+ <include>NOTICE.txt</include>
+ <include>RELEASE-NOTES.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.jar</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/configuration/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/configuration/trunk/src/assembly/src.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/assembly/src.xml?rev=593199&view=auto
==============================================================================
--- commons/proper/configuration/trunk/src/assembly/src.xml (added)
+++ commons/proper/configuration/trunk/src/assembly/src.xml Thu Nov 8 07:31:10
2007
@@ -0,0 +1,50 @@
+<!--
+ 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.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>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>conf</directory>
+ </fileSet>
+ <fileSet>
+ <directory>src</directory>
+ </fileSet>
+ <fileSet>
+ <directory>xdocs</directory>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/configuration/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/configuration/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/site/site.xml?rev=593199&view=auto
==============================================================================
--- commons/proper/configuration/trunk/src/site/site.xml (added)
+++ commons/proper/configuration/trunk/src/site/site.xml Thu Nov 8 07:31:10
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="Commons Configuration">
+ <bannerRight>
+ <name>Commons Configuration</name>
+ <src>/images/logo.png</src>
+ <href>/index.html</href>
+ </bannerRight>
+
+ <body>
+ <menu name="Configuration">
+ <item name="Home" href="/index.html"/>
+ <item name="Download"
href="http://commons.apache.org/downloads/download_configuration.cgi"/>
+ <item name="Release History" href="/changes-report.html"/>
+ <item name="User's Guide"
href="/userguide/user_guide.html"/>
+ <item name="Howtos (1.2 release)"
href="/userguide-1.2/index.html"/>
+ <item name="Runtime Dependencies" href="/dependencies.html"/>
+ <item name="Javadoc (1.4 release)" href="/apidocs/index.html"/>
+ <item name="Javadoc (old releases)" href="/javadoc.html"/>
+ </menu>
+
+ <menu name="Development">
+ <item name="Building" href="/building.html"/>
+ <item name="Roadmap" href="/tasks-report.html"/>
+ <item name="Issue Tracking" href="issue-tracking.html"/>
+ <item name="SVN"
href="http://svn.apache.org/repos/asf/commons/proper/configuration/"/>
+ </menu>
+
+ <menu name="Extensions">
+ <item name="Avalon Component"
href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-configuration/index.html"/>
+ </menu>
+
+ </body>
+
+</project>
Propchange: commons/proper/configuration/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL