]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Remove target
[lgpl/argeo-commons.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo</groupId>
7 <artifactId>parent</artifactId>
8 <version>1.0.0</version>
9 </parent>
10 <groupId>org.argeo.commons</groupId>
11 <artifactId>argeo-commons</artifactId>
12 <version>0.1.1-SNAPSHOT</version>
13 <name>Argeo Commons</name>
14 <packaging>pom</packaging>
15 <properties>
16 <developmentCycle>0.1</developmentCycle>
17 <version.slc>0.12.1-SNAPSHOT</version.slc>
18 <version.argeo-ria>0.12.1-SNAPSHOT</version.argeo-ria>
19 <version.maven-argeo-osgi>0.1.21</version.maven-argeo-osgi>
20 <version.maven-bundle-plugin>2.0.0</version.maven-bundle-plugin>
21 <version.maven-argeo-qooxdoo>0.8.2.1</version.maven-argeo-qooxdoo>
22 </properties>
23 <scm>
24 <connection>scm:svn:https://www.argeo.org/svn/commons/trunk</connection>
25 <developerConnection>scm:svn:https://www.argeo.org/svn/commons/trunk</developerConnection>
26 <url>https://www.argeo.org/svn/commons/trunk</url>
27 </scm>
28 <licenses>
29 <license>
30 <name>Apache 2</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments><![CDATA[
34 SLC - Software LifeCycle framework
35
36 Copyright 2008 Mathieu Baudier - Argeo e.U.
37
38 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
39 you may not use this file except in compliance with the License.
40 You may obtain a copy of the License at
41
42 http://www.apache.org/licenses/LICENSE-2.0
43
44 Unless required by applicable law or agreed to in writing, software
45 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
46 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
47 See the License for the specific language governing permissions and
48 limitations under the License.
49 ]]>
50 </comments>
51 </license>
52 </licenses>
53 <developers>
54 <developer>
55 <id>mbaudier</id>
56 <name>Mathieu Baudier</name>
57 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=crsNpHjhOBDPswHG6HD_gXaqymhC69wmBf7wlagcSHw=]]></email>
58 <organization>Argeo</organization>
59 <organizationUrl>http://www.argeo.org</organizationUrl>
60 <roles>
61 <role>architect</role>
62 <role>developer</role>
63 <role>QA</role>
64 </roles>
65 </developer>
66 </developers>
67 <modules>
68 <module>basic</module>
69 <module>osgi</module>
70 <module>server</module>
71 <module>security</module>
72 </modules>
73 <build>
74 <pluginManagement>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-compiler-plugin</artifactId>
79 <configuration>
80 <source>1.5</source>
81 <target>1.5</target>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-source-plugin</artifactId>
87 <executions>
88 <execution>
89 <id>attach-sources</id>
90 <phase>package</phase>
91 <goals>
92 <goal>jar</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
97 <plugin>
98 <groupId>org.argeo.maven.plugins</groupId>
99 <artifactId>maven-argeo-osgi-plugin</artifactId>
100 <version>${version.maven-argeo-osgi}</version>
101 </plugin>
102 <plugin>
103 <artifactId>maven-jar-plugin</artifactId>
104 <configuration>
105 <archive>
106 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
107 </archive>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-bundle-plugin</artifactId>
113 <version>${version.maven-bundle-plugin}</version>
114 <extensions>true</extensions>
115 <configuration>
116 <manifestLocation>target/classes/META-INF</manifestLocation>
117 <instructions>
118 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
119 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
120 <_removeheaders>Bnd-LastModified</_removeheaders>
121 </instructions>
122 </configuration>
123 <executions>
124 <execution>
125 <id>bundle-manifest</id>
126 <phase>process-classes</phase>
127 <goals>
128 <goal>manifest</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133 </plugins>
134 </pluginManagement>
135 <plugins>
136 <plugin>
137 <groupId>org.codehaus.mojo</groupId>
138 <artifactId>buildnumber-maven-plugin</artifactId>
139 <version>1.0-beta-3</version>
140 <executions>
141 <execution>
142 <phase>validate</phase>
143 <goals>
144 <goal>create</goal>
145 </goals>
146 </execution>
147 </executions>
148 <configuration>
149 <doCheck>false</doCheck>
150 <doUpdate>false</doUpdate>
151 <useLastCommittedRevision>true</useLastCommittedRevision>
152 </configuration>
153 </plugin>
154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-resources-plugin</artifactId>
157 <configuration>
158 <encoding>UTF-8</encoding>
159 </configuration>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-site-plugin</artifactId>
164 <version>2.0-beta-5</version>
165 <!--
166 The site plugin is buggy with multi modules.
167 http://jira.codehaus.org/browse/MSITE-276
168 -->
169 </plugin>
170 <plugin>
171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-release-plugin</artifactId>
173 <configuration>
174 <autoVersionSubmodules>true</autoVersionSubmodules>
175 <releaseProfiles>release</releaseProfiles>
176 <goals>deploy</goals>
177 </configuration>
178 </plugin>
179 </plugins>
180 </build>
181 <dependencyManagement>
182 <dependencies>
183 <dependency>
184 <groupId>org.argeo.dep</groupId>
185 <artifactId>versions</artifactId>
186 <version>1.0.0</version>
187 <type>pom</type>
188 <scope>import</scope>
189 </dependency>
190 </dependencies>
191 </dependencyManagement>
192 <repositories>
193 <repository>
194 <id>argeo</id>
195 <url>http://www.argeo.org/maven/argeo</url>
196 <releases>
197 <enabled>true</enabled>
198 <updatePolicy>daily</updatePolicy>
199 <checksumPolicy>fail</checksumPolicy>
200 </releases>
201 <snapshots>
202 <enabled>false</enabled>
203 <updatePolicy>never</updatePolicy>
204 <checksumPolicy>fail</checksumPolicy>
205 </snapshots>
206 </repository>
207 </repositories>
208 </project>