I figure that things are going to get missed since there's been little to no discussion I can recall in recent times on how, what, when it's happening.
As a start: - Shouldn't things like the changes plugin issue management URL be in the parent POM? - Is there a working Javacc 4.0 plugin for mvn? Dion On 11/17/07, Martin van den Bemt <[EMAIL PROTECTED]> wrote: > Do you anticipate complications with a move ? > > Mvgr, > Martin > > Dion Gillard wrote: > > Hi all, > > > > is there a mandate for an m2 build for commons? > > > > On 11/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >> Author: niallp > >> Date: Fri Nov 16 03:42:56 2007 > >> New Revision: 595632 > >> > >> URL: http://svn.apache.org/viewvc?rev=595632&view=rev > >> Log: > >> Add m2 build > >> > >> Added: > >> commons/proper/jexl/trunk/pom.xml (with props) > >> commons/proper/jexl/trunk/src/assembly/ > >> commons/proper/jexl/trunk/src/assembly/bin.xml (with props) > >> commons/proper/jexl/trunk/src/assembly/src.xml (with props) > >> commons/proper/jexl/trunk/src/site/ > >> commons/proper/jexl/trunk/src/site/resources/ > >> commons/proper/jexl/trunk/src/site/resources/images/ > >> - copied from r595528, commons/proper/jexl/trunk/xdocs/images/ > >> commons/proper/jexl/trunk/src/site/site.xml (with props) > >> > >> Added: commons/proper/jexl/trunk/pom.xml > >> URL: > >> http://svn.apache.org/viewvc/commons/proper/jexl/trunk/pom.xml?rev=595632&view=auto > >> ============================================================================== > >> --- commons/proper/jexl/trunk/pom.xml (added) > >> +++ commons/proper/jexl/trunk/pom.xml Fri Nov 16 03:42:56 2007 > >> @@ -0,0 +1,167 @@ > >> +<?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-jexl</groupId> > >> + <artifactId>commons-jexl</artifactId> > >> + <version>1.1.1-SNAPSHOT</version> > >> + <name>Commons JEXL</name> > >> + <inceptionYear>2003</inceptionYear> > >> + <description>Jexl is an implementation of the JSTL Expression Language > >> with extensions.</description> > >> + <url>http://commons.apache.org/jexl/</url> > >> + > >> + <issueManagement> > >> + <system>jira</system> > >> + <url>http://issues.apache.org/jira/browse/JEXL</url> > >> + </issueManagement> > >> + > >> + <scm> > >> + > >> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jexl/trunk</connection> > >> + > >> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jexl/trunk</developerConnection> > >> + <url>http://svn.apache.org/viewvc/commons/proper/jexl/trunk</url> > >> + </scm> > >> + > >> + <developers> > >> + <developer> > >> + <name>dIon Gillard</name> > >> + <id>dion</id> > >> + <email>[EMAIL PROTECTED]</email> > >> + <organization>Apache Software Foundation</organization> > >> + </developer> > >> + <developer> > >> + <name>Geir Magnusson Jr.</name> > >> + <id>geirm</id> > >> + <email>[EMAIL PROTECTED]</email> > >> + <organization>independent</organization> > >> + </developer> > >> + <developer> > >> + <name>Tim O'Brien</name> > >> + <id>tobrien</id> > >> + <email>[EMAIL PROTECTED]</email> > >> + <organization>independent</organization> > >> + </developer> > >> + <developer> > >> + <name>Peter Royal</name> > >> + <id>proyal</id> > >> + <email>[EMAIL PROTECTED]</email> > >> + <organization>Apache Software Foundation</organization> > >> + </developer> > >> + <developer> > >> + <name>James Strachan</name> > >> + <id>jstrachan</id> > >> + <email>[EMAIL PROTECTED]</email> > >> + <organization>SpiritSoft, Inc.</organization> > >> + </developer> > >> + <developer> > >> + <name>Rahul Akolkar</name> > >> + <id>rahul</id> > >> + <email>rahul AT apache.org</email> > >> + <organization>Apache Software Foundation</organization> > >> + </developer> > >> + </developers> > >> + > >> + <dependencies> > >> + <dependency> > >> + <groupId>commons-logging</groupId> > >> + <artifactId>commons-logging</artifactId> > >> + <version>1.0.4</version> > >> + </dependency> > >> + <dependency> > >> + <groupId>junit</groupId> > >> + <artifactId>junit</artifactId> > >> + <version>3.8.1</version> > >> + <optional>true</optional> > >> + </dependency> > >> + </dependencies> > >> + > >> + <build> > >> + <sourceDirectory>src/java</sourceDirectory> > >> + <testSourceDirectory>src/test</testSourceDirectory> > >> + <resources> > >> + <resource> > >> + <directory>.</directory> > >> + <targetPath>META-INF</targetPath> > >> + <includes> > >> + <include>NOTICE.txt</include> > >> + <include>LICENSE.txt</include> > >> + </includes> > >> + </resource> > >> + </resources> > >> + <plugins> > >> + <plugin> > >> + <groupId>org.apache.maven.plugins</groupId> > >> + <artifactId>maven-surefire-plugin</artifactId> > >> + <configuration> > >> + <includes> > >> + <include>**/Test*.java</include> > >> + </includes> > >> + </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> > >> + > >> + <reporting> > >> + <plugins> > >> + <plugin> > >> + <groupId>org.apache.maven.plugins</groupId> > >> + <artifactId>maven-changes-plugin</artifactId> > >> + <configuration> > >> + <xmlPath>${basedir}/xdocs/changes.xml</xmlPath> > >> + <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> > >> + </configuration> > >> + <reportSets> > >> + <reportSet> > >> + <reports> > >> + <report>changes-report</report> > >> + </reports> > >> + </reportSet> > >> + </reportSets> > >> + </plugin> > >> + <!-- > >> + <plugin> > >> + <groupId>org.apache.maven.plugins</groupId> > >> + <artifactId>maven-checkstyle-plugin</artifactId> > >> + <configuration> > >> + <configLocation>src/conf/checkstyle.xml</configLocation> > >> + <enableRulesSummary>false</enableRulesSummary> > >> + > >> <propertyExpansion>checkstyle.header.file=src/conf/header.txt</propertyExpansion> > >> + </configuration> > >> + </plugin> > >> + --> > >> + </plugins> > >> + </reporting> > >> + > >> +</project> > >> > >> Propchange: commons/proper/jexl/trunk/pom.xml > >> ------------------------------------------------------------------------------ > >> svn:eol-style = native > >> > >> Propchange: commons/proper/jexl/trunk/pom.xml > >> ------------------------------------------------------------------------------ > >> svn:keywords = Date Author Id Revision HeadURL > >> > >> Added: commons/proper/jexl/trunk/src/assembly/bin.xml > >> URL: > >> http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/assembly/bin.xml?rev=595632&view=auto > >> ============================================================================== > >> --- commons/proper/jexl/trunk/src/assembly/bin.xml (added) > >> +++ commons/proper/jexl/trunk/src/assembly/bin.xml Fri Nov 16 03:42:56 2007 > >> @@ -0,0 +1,44 @@ > >> +<!-- > >> + 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>RELEASE-NOTES.txt</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/jexl/trunk/src/assembly/bin.xml > >> ------------------------------------------------------------------------------ > >> svn:eol-style = native > >> > >> Propchange: commons/proper/jexl/trunk/src/assembly/bin.xml > >> ------------------------------------------------------------------------------ > >> svn:keywords = Date Author Id Revision HeadURL > >> > >> Added: commons/proper/jexl/trunk/src/assembly/src.xml > >> URL: > >> http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/assembly/src.xml?rev=595632&view=auto > >> ============================================================================== > >> --- commons/proper/jexl/trunk/src/assembly/src.xml (added) > >> +++ commons/proper/jexl/trunk/src/assembly/src.xml Fri Nov 16 03:42:56 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.properties.sample</include> > >> + <include>build.xml</include> > >> + <include>build-maven.xml</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>PROPOSAL.html</include> > >> + <include>RELEASE-NOTES.txt</include> > >> + </includes> > >> + </fileSet> > >> + <fileSet> > >> + <directory>examples</directory> > >> + </fileSet> > >> + <fileSet> > >> + <directory>src</directory> > >> + </fileSet> > >> + <fileSet> > >> + <directory>xdocs</directory> > >> + </fileSet> > >> + </fileSets> > >> +</assembly> > >> > >> Propchange: commons/proper/jexl/trunk/src/assembly/src.xml > >> ------------------------------------------------------------------------------ > >> svn:eol-style = native > >> > >> Propchange: commons/proper/jexl/trunk/src/assembly/src.xml > >> ------------------------------------------------------------------------------ > >> svn:keywords = Date Author Id Revision HeadURL > >> > >> Added: commons/proper/jexl/trunk/src/site/site.xml > >> URL: > >> http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/site/site.xml?rev=595632&view=auto > >> ============================================================================== > >> --- commons/proper/jexl/trunk/src/site/site.xml (added) > >> +++ commons/proper/jexl/trunk/src/site/site.xml Fri Nov 16 03:42:56 2007 > >> @@ -0,0 +1,47 @@ > >> +<?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="JEXL"> > >> + <bannerRight> > >> + <name>Commons JEXL</name> > >> + <src>/images/jexl-logo-white.png</src> > >> + <href>/index.html</href> > >> + </bannerRight> > >> + > >> + <body> > >> + <menu name="JEXL"> > >> + <item name="Overview" href="/index.html" /> > >> + <item name="1.1 Javadoc" > >> href="/apidocs-1.1/index.html"/> > >> + <item name="1.0 Javadoc" > >> href="/apidocs-1.0/index.html"/> > >> + <item name="Examples" > >> href="http://svn.apache.org/viewvc/commons/proper/jexl/trunk/examples/"/> > >> + <item name="Releases and Builds" href="/releases.html"/> > >> + <item name="Download" > >> href="http://commons.apache.org/downloads/download_jexl.cgi"/> > >> + <item name="Reference" > >> href="/reference/index.html"/> > >> + <item name="JEXL Wiki" > >> href="http://wiki.apache.org/commons/JEXL"/> > >> + </menu> > >> + > >> + <menu name="Development"> > >> + <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="Building" href="/building.html"/> > >> + <item name="Javadoc (SVN latest)" > >> href="apidocs/index.html"/> > >> + </menu> > >> + > >> + </body> > >> + > >> +</project> > >> > >> Propchange: commons/proper/jexl/trunk/src/site/site.xml > >> ------------------------------------------------------------------------------ > >> svn:eol-style = native > >> > >> Propchange: commons/proper/jexl/trunk/src/site/site.xml > >> ------------------------------------------------------------------------------ > >> svn:keywords = Date Author Id Revision HeadURL > >> > >> > >> > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- dIon Gillard Rule #131 of Acquisition: Information is Profit. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]