[EMAIL PROTECTED] wrote: > If no one else is working on this, and there is consensus > that it is a desirable thing to do, I volunteer to port > the build to maven2. > > Is there a patch submission mechanism for folks who are > not committers? >
I had a look at starting this over the break and have a couple of pom.xml files for the spec projects that may be a starting point (attached). If you open a JIRA and attach patches (per Dims's mail) I will help apply them. My +1 for upgrading to M2. -- Jeremy
<?xml version="1.0" encoding="UTF-8"?> <!-- * Copyright (c) 2005 The Apache Software Foundation or its licensors, as applicable. * * Licensed 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> <modelVersion>4.0.0</modelVersion> <groupId>org.osoa</groupId> <artifactId>spec</artifactId> <packaging>pom</packaging> <name>OSOA Specifications</name> <version>SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <modules> <module>sdo</module> <module>sca</module> </modules> </project>
<?xml version="1.0" encoding="UTF-8"?> <!-- * Copyright (c) 2005 The Apache Software Foundation or its licensors, as applicable. * * Licensed 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> <parent> <groupId>org.osoa</groupId> <artifactId>spec</artifactId> <version>SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>sca-api</artifactId> <name>SCA API</name> <version>SNAPSHOT</version> <dependencies> <dependency> <groupId>org.osoa</groupId> <artifactId>sdo-api</artifactId> <version>SNAPSHOT</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <!-- * Copyright (c) 2005 The Apache Software Foundation or its licensors, as applicable. * * Licensed 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> <parent> <groupId>org.osoa</groupId> <artifactId>spec</artifactId> <version>SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>sdo-api</artifactId> <name>SDO API</name> <version>SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>
