| <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.pluto</groupId> |
| <artifactId>pluto-descriptor-impl</artifactId> |
| <packaging>jar</packaging> |
| <name>Pluto Descriptor Service Implementation</name> |
| <url>http://portals.apache.org/pluto</url> |
| <parent> |
| <groupId>org.apache.pluto</groupId> |
| <artifactId>pluto</artifactId> |
| <version>1.1-SNAPSHOT</version> |
| </parent> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/resources/xml</directory> |
| <includes name="*"/> |
| </resource> |
| </resources> |
| <testResources> |
| <testResource> |
| <directory>src/resources/xml</directory> |
| <includes> |
| <include>**/*.xml</include> |
| <include>**/*.dtd</include> |
| <include>**/*.xsd</include> |
| </includes> |
| </testResource> |
| </testResources> |
| <plugins> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <configuration> |
| <descriptor>src/assemble/bin.xml</descriptor> |
| <finalName>pluto-descriptor-impl-${pom.version}</finalName> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.pluto</groupId> |
| <artifactId>pluto-descriptor-api</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>castor</groupId> |
| <artifactId>castor</artifactId> |
| <version>0.9.6</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| <version>2.6.2</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xmlParserAPIs</artifactId> |
| <version>2.6.2</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging-api</artifactId> |
| <version>1.0.4</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <version>1.0.4</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |