blob: c47e5077fc7a33739c880efbedcd203140b22078 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!-- $Rev$ $Date$ -->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.geronimo.devtools</groupId>
<artifactId>org.apache.geronimo.v30.feature</artifactId>
<version>3.0.0</version>
<packaging>jar</packaging>
<name>Geronimo Eclipse Plugin :: Features :: v30</name>
<parent>
<groupId>org.apache.geronimo.devtools</groupId>
<artifactId>eclipse-features-parent</artifactId>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<build>
<resources>
<resource>
<directory>.</directory>
<filtering>true</filtering>
<includes>
<include>feature.xml</include>
<include>feature.properties</include>
<include>license.html</include>
</includes>
</resource>
<resource>
<directory>..</directory>
<includes>
<include>bigG.gif</include>
</includes>
</resource>
<!-- The Geronimo covention puts license and notice for artifacts shipped in this jar
in the jar's meta-inf directory -->
<resource>
<targetPath>META-INF</targetPath>
<directory>.</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
</resource>
<!-- GERONIMODEVTOOLS-406 Display license and notice in Eclipse Update Manager
See also http://www.eclipse.org/legal/guidetolegaldoc.php
This is the place/mechanism for user to see licenses associated with
all plugins in the feature. The plugin with all the unique content
is the runtime plugin, so use its licenses and notices to display to user.
-->
<resource>
<targetPath>about_files</targetPath>
<directory>../..</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
</resource>
<resource>
<targetPath>about_files</targetPath>
<directory>../..</directory>
<filtering>true</filtering>
<includes>
<include>PLUGIN_RELEASE-NOTES.txt</include>
</includes>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>target/maven-shared-archive-resources/META-INF/</directory>
<excludes>
<exclude>LICENSE</exclude>
<exclude>NOTICE</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestEntries>
<Implementation-Version>${osgi.pom.version}</Implementation-Version>
</manifestEntries>
</archive>
<keystore>../../${keystoreFile}</keystore>
<alias>${keystoreAlias}</alias>
<storepass>${keystoreStorepass}</storepass>
<keypass>${keystoreKeypass}</keypass>
</configuration>
</plugin>
</plugins>
</build>
</project>