| <!-- |
| ~ 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. |
| --> |
| <!-- $Rev$ $Date$ --> |
| <project> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>org.apache.geronimo.v11.deployment.model</artifactId> |
| <packaging>jar</packaging> |
| <name>${artifactId}</name> |
| <parent> |
| <groupId>org.apache.geronimo.devtools</groupId> |
| <artifactId>eclipse-plugins-parent</artifactId> |
| <version>2.0.2</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| <build> |
| <resources> |
| <resource> |
| <directory>.</directory> |
| <includes> |
| <include>plugin.xml</include> |
| <include>plugin.properties</include> |
| </includes> |
| </resource> |
| <resource> |
| <targetPath>META-INF</targetPath> |
| <directory>.</directory> |
| <includes> |
| <include>LICENSE</include> |
| <include>NOTICE</include> |
| </includes> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.geronimo.devtools</groupId> |
| <artifactId>maven-eclipsepde-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <artifactId>maven-jar-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>validate</phase> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${imported-resources}</outputDirectory> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.geronimo.devtools</groupId> |
| <artifactId>geronimo-1.1-emf</artifactId> |
| <version>${version}</version> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.geronimo.devtools</groupId> |
| <artifactId>maven-emf-plugin</artifactId> |
| <configuration> |
| <workspace>${project.basedir}/..</workspace> |
| <type>model</type> |
| </configuration> |
| <executions> |
| <execution> |
| <id>execution-web</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/geronimo-web-1.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| <execution> |
| <id>execution-openejb</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/openejb-jar-2.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| <execution> |
| <id>execution-connector</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/geronimo-connector-1.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| <execution> |
| <id>execution-application</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/geronimo-application-1.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| <execution> |
| <id>execution-appclient</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/geronimo-application-client-1.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| <execution> |
| <id>execution-security</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <genmodel> |
| ${project.build.directory}/dependency/emf/geronimo-security-1.1.genmodel</genmodel> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |