| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Copyright 2005-2006 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 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> | |
| <groupId>org.apache.pluto</groupId> | |
| <artifactId>pluto</artifactId> | |
| <version>1.1.0-286-SNAPSHOT</version> | |
| </parent> | |
| <modelVersion>4.0.0</modelVersion> | |
| <artifactId>pluto-descriptor-impl</artifactId> | |
| <packaging>jar</packaging> | |
| <name>Pluto Descriptor Service Implementation</name> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <configuration> | |
| <resourcesDirectory> | |
| ${basedir}/../pluto-site/src/site/resources | |
| </resourcesDirectory> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <!-- best lock down version of the plugin too --> | |
| <configuration> | |
| <source>1.5</source> | |
| <target>1.5</target> | |
| </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>${castor.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>xerces</groupId> | |
| <artifactId>xercesImpl</artifactId> | |
| <version>${xerces.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>xerces</groupId> | |
| <artifactId>xmlParserAPIs</artifactId> | |
| <version>${xerces.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging-api</artifactId> | |
| <version>${commons-logging.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| <version>${commons-logging.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>${junit.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.xml.bind</groupId> | |
| <artifactId>jaxb-api</artifactId> | |
| <version>${jaxb.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.sun.xml.bind</groupId> | |
| <artifactId>jaxb-impl</artifactId> | |
| <version>${jaxb-impl.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>xalan</groupId> | |
| <artifactId>xalan</artifactId> | |
| <version>${xalan.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.activation</groupId> | |
| <artifactId>activation</artifactId> | |
| <version>${activation.version}</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| </dependencies> | |
| </project> |