blob: 5cc7ef8bcb1d6993e884d689df9494c120b68df5 [file] [log] [blame]
<!--
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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.sling.ide</groupId>
<artifactId>reactor</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>org.apache.sling.ide.impl-resource-test</artifactId>
<name>Sling IDE Tools: Resource-based Implementation Tests</name>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/ide/impl-resource-test</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/ide/impl-resource-test</developerConnection>
<url>http://svn.apache.org/viewvc/sling/trunk/tooling/ide/impl-resource-test</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.sling.ide</groupId>
<artifactId>org.apache.sling.ide.impl-resource</artifactId>
<version>${project.version}</version>
<type>eclipse-plugin</type>
</dependency>
<!--
we need to pull in all transitive dependencies of the impl-resource
bundle, since they are not exposed by Tycho(?)
-->
<dependency>
<groupId>org.apache.sling.ide</groupId>
<artifactId>org.apache.sling.ide.api</artifactId>
<version>${project.version}</version>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>