| <?xml version="1.0" encoding="UTF-8"?><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> |
| <artifactId>shared-components-parent</artifactId> |
| <groupId>org.apache.maven.shared</groupId> |
| <version>1</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>file-management</artifactId> |
| <name>Maven Shared File Management API</name> |
| <version>1.0</version> |
| <description>Basic API for lightweight logging</description> |
| <contributors> |
| <contributor> |
| <name>Joakim Erdfelt</name> |
| <email>joakim@erdfelt.com</email> |
| </contributor> |
| </contributors> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.modello</groupId> |
| <artifactId>modello-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>fileset</id> |
| <goals> |
| <goal>xpp3-reader</goal> |
| <goal>xpp3-writer</goal> |
| <goal>java</goal> |
| <goal>xsd</goal> |
| </goals> |
| <configuration> |
| <model>src/main/mdo/fileset.mdo</model> |
| </configuration> |
| </execution> |
| </executions> |
| <configuration> |
| <version>1.0.0</version> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>1.0.4</version> |
| </dependency> |
| </dependencies> |
| </project> |