blob: 06d5f8c7d179f4954af21c10500a13d0e7086df1 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<!-- @version $Rev$ $Date$ -->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.geronimo.devtools</groupId>
<artifactId>testsuite-plugins</artifactId>
<packaging>pom</packaging>
<version>2.1.9-SNAPSHOT</version>
<name>Geronimo Eclipse Plugin :: Testsuite :: Plugins</name>
<parent>
<groupId>org.apache.geronimo.devtools</groupId>
<artifactId>testsuite</artifactId>
<version>2.1.9-SNAPSHOT</version>
</parent>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.geronimo.devtools</groupId>
<artifactId>maven-eclipsepde-plugin</artifactId>
<executions>
<execution>
<id>initialize</id>
<phase>validate</phase>
<goals>
<goal>manifestbundles</goal>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>validate-bundle-classpath</id>
<phase>process-resources</phase>
<goals>
<goal>validatemanifest</goal>
</goals>
<configuration>
<classpathEntriesDir>lib</classpathEntriesDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${basedir}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<!-- workaround for bugzilla 147936 -->
<execution>
<id>backup</id>
<phase>process-sources</phase>
<configuration>
<tasks>
<copy file="${basedir}/.classpath" todir="${project.build.directory}" overwrite="false" failonerror="false" />
<copy file="${basedir}/.project" todir="${project.build.directory}" overwrite="false" failonerror="false" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>restore</id>
<phase>compile</phase>
<configuration>
<tasks>
<copy file="${project.build.directory}/.classpath" todir="${basedir}" overwrite="true" failonerror="false" />
<copy file="${project.build.directory}/.project" todir="${basedir}" overwrite="true" failonerror="false" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<!-- /workaround -->
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>org.apache.geronimo.testsuite.common</module>
<module>org.apache.geronimo.testsuite.v21</module>
<module>org.apache.geronimo.testsuite.v20</module>
</modules>
</project>