d846f0
d846f0
d846f0
    Licensed to the Apache Software Foundation (ASF) under one or more
d846f0
    contributor license agreements.  See the NOTICE file distributed with
d846f0
    this work for additional information regarding copyright ownership.
d846f0
    The ASF licenses this file to You under the Apache License, Version 2.0
d846f0
    (the "License"); you may not use this file except in compliance with
d846f0
    the License.  You may obtain a copy of the License at
d846f0
d846f0
       http://www.apache.org/licenses/LICENSE-2.0
d846f0
d846f0
    Unless required by applicable law or agreed to in writing, software
d846f0
    distributed under the License is distributed on an "AS IS" BASIS,
d846f0
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
d846f0
    See the License for the specific language governing permissions and
d846f0
    limitations under the License.
d846f0
-->
d846f0
d846f0
d846f0
d846f0
<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">
d846f0
d846f0
    <modelVersion>4.0.0</modelVersion>
d846f0
d846f0
    <parent>
d846f0
        <groupId>org.apache.geronimo.genesis.config</groupId>
d846f0
        <artifactId>project-config</artifactId>
d846f0
        <version>1.5</version>
d846f0
    </parent>
d846f0
d846f0
    <groupId>org.apache.geronimo.specs</groupId>
d846f0
    <artifactId>specs-parent</artifactId>
d846f0
    <packaging>pom</packaging>
d846f0
    <name>Geronimo Specifications</name>
d846f0
    <version>1.6</version>
d846f0
d846f0
    <description>
d846f0
        Provides open-source implementations of Sun specifications.
d846f0
    </description>
d846f0
d846f0
    <scm>
d846f0
        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/specs/tags/specs-parent-1.6</connection>
d846f0
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/specs-parent-1.6</developerConnection>
d846f0
        <url>http://svn.apache.org/viewvc/geronimo/specs/tags/specs-parent-1.6</url>
d846f0
    </scm>
d846f0
d846f0
    <url>http://geronimo.apache.org/maven/${siteId}/${version}</url>
d846f0
    <distributionManagement>
d846f0
        <site>
d846f0
            <id>geronimo-website</id>
d846f0
            <url>${staging.siteURL}/${siteId}/${version}</url>
d846f0
        </site>
d846f0
    </distributionManagement>
d846f0
d846f0
    <properties>
d846f0
        <siteId>specs</siteId>
d846f0
        <projectName>Apache Geronimo Specifications</projectName>
d846f0
        
d846f0
              |
d846f0
              | Geronimo OSGi properties
d846f0
              |
d846f0
              | Note: when modules can override these properties.
d846f0
              |
d846f0
              -->
d846f0
        <geronimo.osgi.import.pkg>*</geronimo.osgi.import.pkg>
d846f0
        <geronimo.osgi.export.pkg>*</geronimo.osgi.export.pkg>
d846f0
        <geronimo.osgi.private.pkg />
d846f0
        <geronimo.osgi.export>!META-INF*,${geronimo.osgi.export.pkg}*;version=${geronimo.osgi.export.version}</geronimo.osgi.export>
d846f0
        <geronimo.osgi.export.version>${project.version}</geronimo.osgi.export.version>
d846f0
        <geronimo.osgi.import>!META-INF*,${geronimo.osgi.import.pkg}</geronimo.osgi.import>
d846f0
        <geronimo.osgi.symbolic.name>${groupId}.${artifactId}</geronimo.osgi.symbolic.name>
d846f0
    </properties>
d846f0
d846f0
    <build>
d846f0
        <plugins>
d846f0
            <plugin>
d846f0
                <groupId>org.apache.maven.plugins</groupId>
d846f0
                <artifactId>maven-compiler-plugin</artifactId>
d846f0
                <configuration>
d846f0
                    <source>1.5</source>
d846f0
                    <target>1.5</target>
d846f0
                </configuration>
d846f0
            </plugin>
d846f0
d846f0
            <plugin>
d846f0
                <groupId>org.apache.maven.plugins</groupId>
d846f0
                <artifactId>maven-idea-plugin</artifactId>
d846f0
                <configuration>
d846f0
                    <jdkName>1.5</jdkName>
d846f0
                    <linkModules>true</linkModules>
d846f0
                </configuration>
d846f0
            </plugin>
d846f0
d846f0
            <plugin>
d846f0
                <groupId>org.apache.felix</groupId>
d846f0
                <artifactId>maven-bundle-plugin</artifactId>
d846f0
                <version>1.2.0</version>
d846f0
                <extensions>true</extensions>
d846f0
                <configuration>
d846f0
                    <instructions>
d846f0
                        <Bundle-Name>${artifactId}</Bundle-Name>
d846f0
                        <Bundle-SymbolicName>${geronimo.osgi.symbolic.name}</Bundle-SymbolicName>
d846f0
                        <Export-Package>${geronimo.osgi.export}</Export-Package>
d846f0
                        <Import-Package>${geronimo.osgi.import}</Import-Package>
d846f0
                        <Private-Package>${geronimo.osgi.private.pkg}</Private-Package>
d846f0
                        <Implementation-Title>Apache Geronimo</Implementation-Title>
d846f0
                        <Implementation-Version>${project.version}</Implementation-Version>
d846f0
                    </instructions>
d846f0
                </configuration>
d846f0
                <executions>
d846f0
                    <execution>
d846f0
                        <id>bundle-manifest</id>
d846f0
                        <phase>process-classes</phase>
d846f0
                        <goals>
d846f0
                            <goal>manifest</goal>
d846f0
                        </goals>
d846f0
                    </execution>
d846f0
                </executions>
d846f0
            </plugin>
d846f0
d846f0
            <plugin>
d846f0
                <groupId>org.apache.maven.plugins</groupId>
d846f0
                <artifactId>maven-jar-plugin</artifactId>
d846f0
                <version>2.1</version>
d846f0
                <configuration>
d846f0
                    <archive>
d846f0
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
d846f0
                    </archive>
d846f0
                </configuration>
d846f0
            </plugin>
d846f0
d846f0
        </plugins>
d846f0
    </build>
d846f0
d846f0
    <reporting>
d846f0
        <plugins>
d846f0
            <plugin>
d846f0
                <groupId>org.apache.maven.plugins</groupId>
d846f0
                <artifactId>maven-pmd-plugin</artifactId>
d846f0
                <configuration>
d846f0
                    <targetJdk>1.5</targetJdk>
d846f0
                </configuration>
d846f0
            </plugin>
d846f0
        </plugins>
d846f0
    </reporting>
d846f0
    
d846f0
</project>