| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| 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. |
| --> |
| <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> |
| <parent> |
| <groupId>org.apache.oodt</groupId> |
| <artifactId>oodt-core</artifactId> |
| <version>0.7</version> |
| <relativePath>../core/pom.xml</relativePath> |
| </parent> |
| <artifactId>oodt-profile</artifactId> |
| <name>Profile Service</name> |
| <description>The Profile Service describes and locates resources using metadata |
| descriptions. These descriptions, called profiles, tell of a |
| resource's inception, composition, and location using a mix of |
| Dublin Core and ISO-11179 metadata as well as URIs for locations. |
| The Profile Service catalogs metadata descriptions and provides |
| creating, updating, and querying capabilities.</description> |
| <scm> |
| <connection>scm:svn:https://svn.apache.org/repos/asf/oodt/tags/0.7/profile</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/oodt/tags/0.7/profile</developerConnection> |
| <url>http://svn.apache.org/viewvc/oodt/tags/0.7/profile</url> |
| </scm> |
| <build> |
| <resources> |
| <resource> |
| <directory>${basedir}/src/main/dtd</directory> |
| </resource> |
| </resources> |
| <testResources> |
| <testResource> |
| <targetPath>org/apache/oodt/profile</targetPath> |
| <directory>${basedir}/src/testdata</directory> |
| <includes> |
| <include>test.rdf</include> |
| <include>test.xml</include> |
| </includes> |
| </testResource> |
| <testResource> |
| <targetPath>org/apache/oodt/profile/handlers/lightweight</targetPath> |
| <directory>${basedir}/src/testdata</directory> |
| <includes> |
| <include>lightweightTest.xml</include> |
| </includes> |
| </testResource> |
| </testResources> |
| <plugins> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <forkMode>once</forkMode> |
| <excludes> |
| <exclude>org/apache/oodt/profile/ProfileElementTestCase.java</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <profiles> |
| <profile> |
| <id>audit</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>rat-maven-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>**/testdata/*</exclude> |
| <exclude>**/handlers/lightweight/package.html</exclude> |
| </excludes> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.oodt</groupId> |
| <artifactId>oodt-commons</artifactId> |
| <version>${project.parent.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.oodt</groupId> |
| <artifactId>oodt-xmlquery</artifactId> |
| <version>${project.parent.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.oodt</groupId> |
| <artifactId>cas-filemgr</artifactId> |
| <version>${project.parent.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.hp.hpl.jena</groupId> |
| <artifactId>jena</artifactId> |
| <version>2.6.3</version> |
| </dependency> |
| <dependency> |
| <groupId>com.ibm.icu</groupId> |
| <artifactId>icu4j</artifactId> |
| <version>3.4.4</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-httpclient</groupId> |
| <artifactId>commons-httpclient</artifactId> |
| <version>3.0-alpha1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>1.3</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <version>1.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.2</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |