blob: 99b2440282d534eb1c6592f543baa35d3cd6ea1d [file] [log] [blame]
Carsten Ziegeler4490ee92007-08-24 07:39:56 +00001<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">
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +00002
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>felix</artifactId>
6 <groupId>org.apache.felix</groupId>
7 <version>1.0.0</version>
8 </parent>
9
10 <groupId>org.apache.felix</groupId>
11 <artifactId>maven-scr-plugin</artifactId>
12
Carsten Ziegeler4490ee92007-08-24 07:39:56 +000013 <version>0.2.0</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000014 <packaging>maven-plugin</packaging>
15
16 <name>Maven Scr Plugin</name>
17 <description>
18 Maven plugin for generating OSGi service descriptors based on annotations.
19 </description>
20
21 <scm>
Carsten Ziegeler4490ee92007-08-24 07:39:56 +000022 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-0.2.0</connection>
23 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-0.2.0</developerConnection>
24 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-0.2.0</url>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000025 </scm>
26
27 <dependencies>
28 <dependency>
29 <groupId>org.osgi</groupId>
30 <artifactId>osgi_R4_core</artifactId>
31 <version>1.0</version>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>osgi_R4_compendium</artifactId>
37 <version>1.0</version>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.apache.commons</groupId>
42 <artifactId>commons-io</artifactId>
43 <version>1.3.2</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.apache.maven</groupId>
48 <artifactId>maven-plugin-api</artifactId>
49 <version>2.0.7</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-archiver</artifactId>
54 <version>2.2</version>
55 </dependency>
56
57 <dependency>
58 <groupId>com.thoughtworks.qdox</groupId>
59 <artifactId>qdox</artifactId>
60 <version>1.6.3</version>
61 </dependency>
62 </dependencies>
Carsten Ziegelerefccf872007-08-22 09:14:15 +000063 <build>
64 <pluginManagement>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-release-plugin</artifactId>
69 <version>2.0-beta-6</version>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-gpg-plugin</artifactId>
74 <version>1.0-alpha-3</version>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-assembly-plugin</artifactId>
79 <version>2.2-beta-1</version>
80 </plugin>
81 </plugins>
82 </pluginManagement>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-release-plugin</artifactId>
87 <configuration>
88 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
89 <useReleaseProfile>false</useReleaseProfile>
90 <goals>deploy</goals>
91 </configuration>
92 </plugin>
93 </plugins>
94 </build>
95
96 <profiles>
97 <profile>
98 <id>release</id>
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-gpg-plugin</artifactId>
104 <executions>
105 <execution>
106 <id>sign-artifacts</id>
107 <phase>verify</phase>
108 <goals>
109 <goal>sign</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-assembly-plugin</artifactId>
117 <configuration>
118 <descriptorRefs>
119 <descriptorRef>bin</descriptorRef>
120 <descriptorRef>project</descriptorRef>
121 </descriptorRefs>
122 </configuration>
123 <executions>
124 <execution>
125 <id>make-assembly</id>
126 <phase>package</phase>
127 <goals>
128 <goal>attached</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133 </plugins>
134 </build>
135 </profile>
136 </profiles>
Carsten Ziegeler80ed0372007-08-22 09:16:40 +0000137</project>