| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!-- |
| |
| Copyright 2004 The Apache Software Foundation |
| |
| 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> |
| <pomVersion>3</pomVersion> |
| |
| <groupId>xmlbeans</groupId> |
| <id>xmlbeans-maven-plugin</id> |
| <currentVersion>2.0.0-beta1</currentVersion> |
| <name>xmlbeans maven plugin</name> |
| <organization> |
| <name>Apache Software Foundation</name> |
| <url>http://www.apache.org/</url> |
| <logo></logo> |
| </organization> |
| <inceptionYear>2004</inceptionYear> |
| <package>org.apache.xmlbeans.maven</package> |
| <logo></logo> |
| |
| <dependencies> |
| <dependency> |
| <groupId>xml-resolver</groupId> |
| <artifactId>xml-resolver</artifactId> |
| <version>1.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>xmlbeans</groupId> |
| <artifactId>xbean</artifactId> |
| <version>2.0.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>stax</groupId> |
| <artifactId>stax-api</artifactId> |
| <version>1.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>maven</groupId> |
| <artifactId>maven</artifactId> |
| <version>1.0.2</version> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <sourceDirectory>src/java</sourceDirectory> |
| <unitTestSourceDirectory>src/test</unitTestSourceDirectory> |
| |
| <unitTest> |
| <includes> |
| <include>**/*Test.java</include> |
| </includes> |
| </unitTest> |
| |
| <resources> |
| <resource> |
| <directory>src/plugin-resources</directory> |
| <targetPath>plugin-resources</targetPath> |
| </resource> |
| <resource> |
| <directory>.</directory> |
| <includes> |
| <include>plugin.jelly</include> |
| <include>plugin.properties</include> |
| <include>project.properties</include> |
| <include>project.xml</include> |
| </includes> |
| </resource> |
| </resources> |
| </build> |
| </project> |