Michael E. Rodriguez | 69df15c | 2007-03-14 04:54:13 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8" ?> |
| 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 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.apache.felix.commons</groupId> |
| 26 | <artifactId>build</artifactId> |
| 27 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | <properties> |
| 30 | <pkgArtifactId>hibernate</pkgArtifactId> |
| 31 | <pkgVersion>3.1.3</pkgVersion> |
| 32 | <pomVersion>0001</pomVersion> |
| 33 | <osgiVersion>${pkgVersion}</osgiVersion> |
| 34 | </properties> |
| 35 | <groupId>org.apache.felix.commons</groupId> |
| 36 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 37 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
| 38 | <packaging>bundle</packaging> |
| 39 | <name>${pkgArtifactId} bundle</name> |
| 40 | <description> |
| 41 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
| 42 | </description> |
| 43 | <organization> |
| 44 | <name>Apache Felix Project</name> |
| 45 | <url>http://incubator.apache.org/felix/</url> |
| 46 | </organization> |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.hibernate</groupId> |
| 50 | <artifactId>${pkgArtifactId}</artifactId> |
| 51 | <version>${pkgVersion}</version> |
| 52 | <exclusions> |
| 53 | <exclusion> |
| 54 | <groupId>asm</groupId> |
| 55 | <artifactId>asm</artifactId> |
| 56 | </exclusion> |
| 57 | <exclusion> |
| 58 | <groupId>ehcache</groupId> |
| 59 | <artifactId>ehcache</artifactId> |
| 60 | </exclusion> |
| 61 | <exclusion> |
| 62 | <groupId>commons-logging</groupId> |
| 63 | <artifactId>commons-logging</artifactId> |
| 64 | </exclusion> |
| 65 | <exclusion> |
| 66 | <groupId>ant</groupId> |
| 67 | <artifactId>ant</artifactId> |
| 68 | </exclusion> |
| 69 | <exclusion> |
| 70 | <groupId>c3p0</groupId> |
| 71 | <artifactId>c3p0</artifactId> |
| 72 | </exclusion> |
| 73 | <exclusion> |
| 74 | <groupId>proxool</groupId> |
| 75 | <artifactId>proxool</artifactId> |
| 76 | </exclusion> |
| 77 | <exclusion> |
| 78 | <groupId>ehcache</groupId> |
| 79 | <artifactId>ehcache</artifactId> |
| 80 | </exclusion> |
| 81 | <exclusion> |
| 82 | <groupId>opensymphony</groupId> |
| 83 | <artifactId>oscache</artifactId> |
| 84 | </exclusion> |
| 85 | <exclusion> |
| 86 | <groupId>swarmcache</groupId> |
| 87 | <artifactId>swarmcache</artifactId> |
| 88 | </exclusion> |
| 89 | <exclusion> |
| 90 | <groupId>jboss</groupId> |
| 91 | <artifactId>jboss-cache</artifactId> |
| 92 | </exclusion> |
| 93 | <exclusion> |
| 94 | <groupId>jgroups</groupId> |
| 95 | <artifactId>jgroups-all</artifactId> |
| 96 | </exclusion> |
| 97 | <exclusion> |
| 98 | <groupId>cglib</groupId> |
| 99 | <artifactId>cglib</artifactId> |
| 100 | </exclusion> |
| 101 | <exclusion> |
| 102 | <groupId>asm</groupId> |
| 103 | <artifactId>asm</artifactId> |
| 104 | </exclusion> |
| 105 | <exclusion> |
| 106 | <groupId>asm</groupId> |
| 107 | <artifactId>asm-attrs</artifactId> |
| 108 | </exclusion> |
| 109 | <exclusion> |
| 110 | <groupId>commons-collections</groupId> |
| 111 | <artifactId>commons-collections</artifactId> |
| 112 | </exclusion> |
| 113 | <exclusion> |
| 114 | <groupId>javax.security</groupId> |
| 115 | <artifactId>jacc</artifactId> |
| 116 | </exclusion> |
| 117 | <exclusion> |
| 118 | <groupId>dom4j</groupId> |
| 119 | <artifactId>dom4j</artifactId> |
| 120 | </exclusion> |
| 121 | <exclusion> |
| 122 | <groupId>javax.transaction</groupId> |
| 123 | <artifactId>jta</artifactId> |
| 124 | </exclusion> |
| 125 | <exclusion> |
| 126 | <groupId>antlr</groupId> |
| 127 | <artifactId>antlr</artifactId> |
| 128 | </exclusion> |
| 129 | </exclusions> |
| 130 | </dependency> |
| 131 | </dependencies> |
| 132 | <build> |
| 133 | <plugins> |
| 134 | <plugin> |
| 135 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 136 | <artifactId>maven-bundle-plugin</artifactId> |
Michael E. Rodriguez | 69df15c | 2007-03-14 04:54:13 +0000 | [diff] [blame] | 137 | <extensions>true</extensions> |
| 138 | <configuration> |
| 139 | <instructions> |
| 140 | <Bundle-SymbolicName> |
| 141 | ${pom.artifactId} |
| 142 | </Bundle-SymbolicName> |
| 143 | <Export-Package>*;version=${pkgVersion}</Export-Package> |
| 144 | <Import-Package> |
| 145 | com.mchange.v2.c3p0.*;resolution:=optional, |
| 146 | com.opensymphony.oscache.*;resolution:=optional, |
| 147 | javax.security.jacc.*;resolution:=optional, |
| 148 | org.apache.tools.ant.*;resolution:=optional, |
| 149 | org.jboss.cache.*;resolution:=optional, |
| 150 | org.logicalcobwebs.proxool.*;resolution:=optional, |
| 151 | net.sf.swarmcache.*;resolution:=optional, |
| 152 | javax.transaction.*;version=1.0.1, * |
| 153 | </Import-Package> |
| 154 | </instructions> |
| 155 | </configuration> |
| 156 | </plugin> |
| 157 | </plugins> |
| 158 | </build> |
| 159 | </project> |