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