Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +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" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <artifactId>felix</artifactId> |
| 27 | <groupId>org.apache.felix</groupId> |
| 28 | <version>1.0.0</version> |
| 29 | </parent> |
| 30 | |
| 31 | <groupId>org.apache.felix</groupId> |
| 32 | <artifactId>maven-scr-plugin</artifactId> |
| 33 | |
| 34 | <version>0.1.0-SNAPSHOT</version> |
| 35 | <packaging>maven-plugin</packaging> |
| 36 | |
| 37 | <name>Maven Scr Plugin</name> |
| 38 | <description> |
| 39 | Maven plugin for generating OSGi service descriptors based on annotations. |
| 40 | </description> |
| 41 | |
| 42 | <scm> |
Carsten Ziegeler | cfea2ac | 2007-08-20 07:37:29 +0000 | [diff] [blame] | 43 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection> |
| 44 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection> |
| 45 | <url>http://svn.apache.org/repos/asf/felix/scrplugin</url> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 46 | </scm> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>osgi_R4_core</artifactId> |
| 52 | <version>1.0</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.osgi</groupId> |
| 57 | <artifactId>osgi_R4_compendium</artifactId> |
| 58 | <version>1.0</version> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.commons</groupId> |
| 63 | <artifactId>commons-io</artifactId> |
| 64 | <version>1.3.2</version> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.apache.maven</groupId> |
| 69 | <artifactId>maven-plugin-api</artifactId> |
| 70 | <version>2.0.7</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.apache.maven</groupId> |
| 74 | <artifactId>maven-archiver</artifactId> |
| 75 | <version>2.2</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>com.thoughtworks.qdox</groupId> |
| 80 | <artifactId>qdox</artifactId> |
| 81 | <version>1.6.3</version> |
| 82 | </dependency> |
| 83 | </dependencies> |
Carsten Ziegeler | efccf87 | 2007-08-22 09:14:15 +0000 | [diff] [blame^] | 84 | <build> |
| 85 | <pluginManagement> |
| 86 | <plugins> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-release-plugin</artifactId> |
| 90 | <version>2.0-beta-6</version> |
| 91 | </plugin> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-gpg-plugin</artifactId> |
| 95 | <version>1.0-alpha-3</version> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-assembly-plugin</artifactId> |
| 100 | <version>2.2-beta-1</version> |
| 101 | </plugin> |
| 102 | </plugins> |
| 103 | </pluginManagement> |
| 104 | <plugins> |
| 105 | <plugin> |
| 106 | <groupId>org.apache.maven.plugins</groupId> |
| 107 | <artifactId>maven-release-plugin</artifactId> |
| 108 | <configuration> |
| 109 | <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase> |
| 110 | <useReleaseProfile>false</useReleaseProfile> |
| 111 | <goals>deploy</goals> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
| 116 | |
| 117 | <profiles> |
| 118 | <profile> |
| 119 | <id>release</id> |
| 120 | <build> |
| 121 | <plugins> |
| 122 | <plugin> |
| 123 | <groupId>org.apache.maven.plugins</groupId> |
| 124 | <artifactId>maven-gpg-plugin</artifactId> |
| 125 | <executions> |
| 126 | <execution> |
| 127 | <id>sign-artifacts</id> |
| 128 | <phase>verify</phase> |
| 129 | <goals> |
| 130 | <goal>sign</goal> |
| 131 | </goals> |
| 132 | </execution> |
| 133 | </executions> |
| 134 | </plugin> |
| 135 | <plugin> |
| 136 | <groupId>org.apache.maven.plugins</groupId> |
| 137 | <artifactId>maven-assembly-plugin</artifactId> |
| 138 | <configuration> |
| 139 | <descriptorRefs> |
| 140 | <descriptorRef>bin</descriptorRef> |
| 141 | <descriptorRef>project</descriptorRef> |
| 142 | </descriptorRefs> |
| 143 | </configuration> |
| 144 | <executions> |
| 145 | <execution> |
| 146 | <id>make-assembly</id> |
| 147 | <phase>package</phase> |
| 148 | <goals> |
| 149 | <goal>attached</goal> |
| 150 | </goals> |
| 151 | </execution> |
| 152 | </executions> |
| 153 | </plugin> |
| 154 | </plugins> |
| 155 | </build> |
| 156 | </profile> |
| 157 | </profiles> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 158 | </project> |