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