Jan Willem Janssen | f657b45 | 2012-10-25 13:06:52 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <artifactId>felix-parent</artifactId> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <version>1.2.0</version> |
| 26 | <relativePath>../../../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | <properties> |
| 29 | <osgi.version>4.0.0</osgi.version> |
| 30 | <pax.exam.version>2.4.0</pax.exam.version> |
| 31 | <pax.exam.plugin.version>1.2.4</pax.exam.plugin.version> |
| 32 | <pax.url.aether.version>1.4.0</pax.url.aether.version> |
| 33 | <pax.swissbox.version>1.3.1</pax.swissbox.version> |
| 34 | <pax.runner.version>1.7.6</pax.runner.version> |
| 35 | </properties> |
| 36 | <artifactId>org.apache.felix.useradmin.itest</artifactId> |
| 37 | <version>1.0.0-SNAPSHOT</version> |
| 38 | <packaging>jar</packaging> |
| 39 | <description>Integration tests for the UserAdmin OSGi compendium service.</description> |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.osgi</groupId> |
| 43 | <artifactId>org.osgi.core</artifactId> |
| 44 | <version>${osgi.version}</version> |
| 45 | <scope>provided</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.osgi</groupId> |
| 49 | <artifactId>org.osgi.compendium</artifactId> |
| 50 | <version>${osgi.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.apache.felix</groupId> |
| 54 | <artifactId>org.apache.felix.useradmin</artifactId> |
| 55 | <version>1.0.3-SNAPSHOT</version> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.useradmin.filestore</artifactId> |
| 61 | <version>1.0.2-SNAPSHOT</version> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.felix</groupId> |
| 66 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 67 | <version>3.0.0</version> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>junit</groupId> |
| 72 | <artifactId>junit</artifactId> |
| 73 | <version>4.10</version> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.ops4j.pax.exam</groupId> |
| 78 | <artifactId>pax-exam-junit4</artifactId> |
| 79 | <version>${pax.exam.version}</version> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.ops4j.pax.exam</groupId> |
| 84 | <artifactId>pax-exam-container-forked</artifactId> |
| 85 | <version>${pax.exam.version}</version> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.ops4j.pax.runner</groupId> |
| 90 | <artifactId>pax-runner-no-jcl</artifactId> |
| 91 | <version>${pax.runner.version}</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.ops4j.pax.exam</groupId> |
| 96 | <artifactId>pax-exam-link-assembly</artifactId> |
| 97 | <version>${pax.exam.version}</version> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.ops4j.pax.exam</groupId> |
| 102 | <artifactId>pax-exam-link-mvn</artifactId> |
| 103 | <version>${pax.exam.version}</version> |
| 104 | <scope>test</scope> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.ops4j.pax.url</groupId> |
| 108 | <artifactId>pax-url-aether</artifactId> |
| 109 | <version>${pax.url.aether.version}</version> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.ops4j.pax.url</groupId> |
| 114 | <artifactId>pax-url-wrap</artifactId> |
| 115 | <version>${pax.url.aether.version}</version> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>javax.inject</groupId> |
| 120 | <artifactId>javax.inject</artifactId> |
| 121 | <version>1</version> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.apache.felix</groupId> |
| 126 | <artifactId>org.apache.felix.framework</artifactId> |
| 127 | <version>4.0.2</version> |
| 128 | <scope>test</scope> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.slf4j</groupId> |
| 132 | <artifactId>slf4j-simple</artifactId> |
| 133 | <version>1.6.0</version> |
| 134 | <scope>compile</scope> |
| 135 | </dependency> |
| 136 | </dependencies> |
| 137 | <build> |
| 138 | <plugins> |
| 139 | <plugin> |
| 140 | <groupId>org.apache.maven.plugins</groupId> |
| 141 | <artifactId>maven-compiler-plugin</artifactId> |
| 142 | <configuration> |
| 143 | <target>1.6</target> |
| 144 | <source>1.6</source> |
| 145 | </configuration> |
| 146 | </plugin> |
| 147 | <plugin> |
| 148 | <groupId>org.codehaus.mojo</groupId> |
| 149 | <artifactId>rat-maven-plugin</artifactId> |
| 150 | <configuration> |
| 151 | <excludeSubProjects>false</excludeSubProjects> |
| 152 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 153 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 154 | <excludes> |
| 155 | <param>doc/*</param> |
| 156 | <param>maven-eclipse.xml</param> |
| 157 | <param>.checkstyle</param> |
| 158 | <param>.externalToolBuilders/*</param> |
| 159 | </excludes> |
| 160 | </configuration> |
| 161 | </plugin> |
| 162 | </plugins> |
| 163 | </build> |
| 164 | </project> |