Carsten Ziegeler | a3cd787 | 2012-11-28 15:44:22 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <groupId>org.apache.felix.scr</groupId> |
| 23 | <artifactId>basic-built-it</artifactId> |
| 24 | <packaging>bundle</packaging> |
| 25 | <version>1.0-SNAPSHOT</version> |
| 26 | <name>basic-build-it</name> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.felix</groupId> |
| 31 | <artifactId>maven-scr-plugin</artifactId> |
| 32 | <version>@project.version@</version> |
| 33 | <executions> |
| 34 | <execution> |
| 35 | <id>generate-scr-descriptor</id> |
| 36 | <goals> |
| 37 | <goal>scr</goal> |
| 38 | </goals> |
| 39 | </execution> |
| 40 | </executions> |
| 41 | </plugin> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>maven-bundle-plugin</artifactId> |
| 45 | <extensions>true</extensions> |
| 46 | <version>2.3.7</version> |
| 47 | </plugin> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-compiler-plugin</artifactId> |
| 51 | <version>3.0</version> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
| 55 | <dependencies> |
| 56 | <dependency> |
| 57 | <groupId>javax.servlet</groupId> |
| 58 | <artifactId>servlet-api</artifactId> |
| 59 | <version>2.5</version> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.osgi</groupId> |
| 64 | <artifactId>org.osgi.compendium</artifactId> |
| 65 | <version>4.2.0</version> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.osgi</groupId> |
| 70 | <artifactId>org.osgi.core</artifactId> |
| 71 | <version>4.2.0</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>javax.jcr</groupId> |
| 76 | <artifactId>jcr</artifactId> |
| 77 | <version>2.0</version> |
| 78 | <scope>provided</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.apache.sling</groupId> |
| 82 | <artifactId>org.apache.sling.api</artifactId> |
| 83 | <version>2.2.0</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.slf4j</groupId> |
| 88 | <artifactId>slf4j-api</artifactId> |
| 89 | <version>1.5.10</version> |
| 90 | <scope>provided</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Carsten Ziegeler | 909194f | 2013-03-01 06:55:26 +0000 | [diff] [blame] | 95 | <version>1.9.0</version> |
Carsten Ziegeler | a3cd787 | 2012-11-28 15:44:22 +0000 | [diff] [blame] | 96 | <scope>provided</scope> |
| 97 | </dependency> |
| 98 | </dependencies> |
| 99 | </project> |