Michael E. Rodriguez | 9729ed0 | 2007-03-14 04:30:59 +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>commons-jxpath</pkgArtifactId> |
| 31 | <pkgVersion>1.2</pkgVersion> |
| 32 | <pomVersion>0001</pomVersion> |
| 33 | <osgiVersion>${pkgVersion}.0</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> |
Karl Pauls | 5a105ac | 2007-06-18 20:54:19 +0000 | [diff] [blame] | 45 | <url>http://felix.apache.org/</url> |
Michael E. Rodriguez | 9729ed0 | 2007-03-14 04:30:59 +0000 | [diff] [blame] | 46 | </organization> |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>commons-jxpath</groupId> |
| 50 | <artifactId>${pkgArtifactId}</artifactId> |
| 51 | <version>${pkgVersion}</version> |
| 52 | <scope>compile</scope> |
| 53 | <exclusions> |
| 54 | <exclusion> |
| 55 | <groupId>commons-logging</groupId> |
| 56 | <artifactId>commons-logging</artifactId> |
| 57 | </exclusion> |
| 58 | <exclusion> |
| 59 | <groupId>ant</groupId> |
| 60 | <artifactId>ant-optional</artifactId> |
| 61 | </exclusion> |
| 62 | <exclusion> |
| 63 | <groupId>junit</groupId> |
| 64 | <artifactId>junit</artifactId> |
| 65 | </exclusion> |
| 66 | <exclusion> |
| 67 | <groupId>xerces</groupId> |
| 68 | <artifactId>xerces</artifactId> |
| 69 | </exclusion> |
| 70 | <exclusion> |
| 71 | <groupId>servletapi</groupId> |
| 72 | <artifactId>servletapi</artifactId> |
| 73 | </exclusion> |
| 74 | <exclusion> |
| 75 | <groupId>xml-apis</groupId> |
| 76 | <artifactId>xml-apis</artifactId> |
| 77 | </exclusion> |
| 78 | </exclusions> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>commons-collections</groupId> |
| 82 | <artifactId>commons-collections</artifactId> |
| 83 | <version>3.1</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>commons-beanutils</groupId> |
| 88 | <artifactId>commons-beanutils</artifactId> |
| 89 | <version>1.7.0</version> |
| 90 | <scope>provided</scope> |
| 91 | <exclusions> |
| 92 | <exclusion> |
| 93 | <groupId>commons-logging</groupId> |
| 94 | <artifactId>commons-logging</artifactId> |
| 95 | </exclusion> |
| 96 | </exclusions> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.slf4j</groupId> |
| 100 | <artifactId>jcl104-over-slf4j</artifactId> |
| 101 | <version>1.3.0</version> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.slf4j</groupId> |
| 106 | <artifactId>slf4j-simple</artifactId> |
| 107 | <version>1.3.0</version> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | </dependencies> |
| 111 | <build> |
| 112 | <plugins> |
| 113 | <plugin> |
| 114 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 115 | <artifactId>maven-bundle-plugin</artifactId> |
Michael E. Rodriguez | 9729ed0 | 2007-03-14 04:30:59 +0000 | [diff] [blame] | 116 | <extensions>true</extensions> |
| 117 | <configuration> |
| 118 | <instructions> |
| 119 | <Bundle-SymbolicName> |
| 120 | ${pom.artifactId} |
| 121 | </Bundle-SymbolicName> |
| 122 | <Import-Package> |
| 123 | org.w3c.dom,javax.xml.transform,javax.xml.transform.dom, |
| 124 | javax.xml.parsers, org.apache.commons.beanutils |
| 125 | </Import-Package> |
| 126 | <DynamicImport-Package> |
| 127 | org.jdom, org.jdom.input |
| 128 | </DynamicImport-Package> |
| 129 | <Export-Package> |
| 130 | org.apache.commons.jxpath;version=${pkgVersion},org.apache.commons.jxpath.functions;version=${pkgVersion},org.apache.commons.jxpath.util;version=${pkgVersion}, |
| 131 | org.apache.commons.jxpath.xml;version=${pkgVersion} |
| 132 | </Export-Package> |
| 133 | </instructions> |
| 134 | </configuration> |
| 135 | </plugin> |
| 136 | </plugins> |
| 137 | </build> |
| 138 | </project> |