|
Revision 4988, 1.4 KB
(checked in by mtld, 2 years ago)
|
|
set version to 1.0.2
|
-
Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 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 | |
|---|
| 4 | <modelVersion>4.0.0</modelVersion> |
|---|
| 5 | |
|---|
| 6 | <parent> |
|---|
| 7 | <groupId>org.pustefixframework</groupId> |
|---|
| 8 | <artifactId>pustefixframework</artifactId> |
|---|
| 9 | <version>1.0.2</version> |
|---|
| 10 | </parent> |
|---|
| 11 | |
|---|
| 12 | <groupId>org.pustefixframework.osgi</groupId> |
|---|
| 13 | <artifactId>pustefix-osgi</artifactId> |
|---|
| 14 | <packaging>pom</packaging> |
|---|
| 15 | <version>1.0.2</version> |
|---|
| 16 | <name>Pustefix for OSGi support</name> |
|---|
| 17 | <url>http://pustefixframework.org</url> |
|---|
| 18 | |
|---|
| 19 | <dependencies> |
|---|
| 20 | <dependency> |
|---|
| 21 | <groupId>org.pustefixframework</groupId> |
|---|
| 22 | <artifactId>pustefix-core</artifactId> |
|---|
| 23 | <version>1.0.2</version> |
|---|
| 24 | </dependency> |
|---|
| 25 | <dependency> |
|---|
| 26 | <groupId>log4j</groupId> |
|---|
| 27 | <artifactId>log4j</artifactId> |
|---|
| 28 | <version>1.2.13</version> |
|---|
| 29 | </dependency> |
|---|
| 30 | <dependency> |
|---|
| 31 | <groupId>javax.servlet</groupId> |
|---|
| 32 | <artifactId>servlet-api</artifactId> |
|---|
| 33 | <version>2.4</version> |
|---|
| 34 | <scope>provided</scope> |
|---|
| 35 | </dependency> |
|---|
| 36 | </dependencies> |
|---|
| 37 | |
|---|
| 38 | <modules> |
|---|
| 39 | <module>pustefix-osgi-spring-dm-extender</module> |
|---|
| 40 | <module>pustefix-osgi-spring-jndi</module> |
|---|
| 41 | <module>pustefix-osgi-logservice-bridge</module> |
|---|
| 42 | <module>pustefix-osgi-antlr-hibernate</module> |
|---|
| 43 | </modules> |
|---|
| 44 | |
|---|
| 45 | </project> |
|---|
| 46 | |
|---|