Blame SOURCES/pom.xml

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