40N/A<?xml version="1.0" encoding="UTF-8"?>
40N/A<!--
40N/A
1577N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
40N/A
40N/A Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
919N/A
919N/A The contents of this file are subject to the terms of either the GNU
919N/A General Public License Version 2 only ("GPL") or the Common Development
919N/A and Distribution License("CDDL") (collectively, the "License"). You
919N/A may not use this file except in compliance with the License. You can
919N/A obtain a copy of the License at
919N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
919N/A or packager/legal/LICENSE.txt. See the License for the specific
919N/A language governing permissions and limitations under the License.
919N/A
919N/A When distributing the software, include this License Header Notice in each
919N/A file and include the License file at packager/legal/LICENSE.txt.
919N/A
919N/A GPL Classpath Exception:
919N/A Oracle designates this particular file as subject to the "Classpath"
919N/A exception as provided by Oracle in the GPL Version 2 section of the License
919N/A file that accompanied this code.
40N/A
40N/A Modifications:
40N/A If applicable, add the following below the License Header, with the fields
1451N/A enclosed by brackets [] replaced by your own identifying information:
40N/A "Portions Copyright [year] [name of copyright owner]"
947N/A
947N/A Contributor(s):
947N/A If you wish your version of this file to be governed by only the CDDL or
947N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
40N/A elects to include this software in this distribution under the [CDDL or GPL
1451N/A Version 2] license." If you don't indicate a single choice of license, a
47N/A recipient has the option to distribute your version of this file under
1003N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
40N/A its licensees as provided above. However, if you add GPL Version 2 code
493N/A and therefore, elected the GPL Version 2 license, then the option applies
40N/A only if the new code is made subject to such option by the copyright
40N/A holder.
40N/A
493N/A-->
947N/A
1003N/A<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">
493N/A <modelVersion>4.0.0</modelVersion>
1451N/A <parent>
493N/A <groupId>org.glassfish.main.packager</groupId>
493N/A <artifactId>packages</artifactId>
493N/A <version>3.1.2</version>
947N/A <relativePath>/pom.xml</relativePath>
1003N/A </parent>
493N/A <artifactId>felix</artifactId>
1451N/A <name>Felix Package</name>
493N/A <packaging>distribution-base-zip</packaging>
40N/A <description>This pom describes how to assemble the Felix package</description>
40N/A
1003N/A <build>
40N/A <plugins>
947N/A <plugin>
40N/A <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
1003N/A <artifactId>maven-antrun-extended-plugin</artifactId>
1003N/A <configuration>
1003N/A <tasks>
1003N/A <if test="${do.compression}">
1003N/A <property name="compression" value="true" />
1003N/A </if>
1003N/A <ant dir="." antfile="build.xml" target="create.package" />
1003N/A </tasks>
40N/A </configuration>
40N/A </plugin>
40N/A <plugin>
40N/A <groupId>org.apache.maven.plugins</groupId>
1451N/A <artifactId>maven-dependency-plugin</artifactId>
40N/A <executions>
40N/A <execution>
40N/A <id>copy-dependencies</id>
1451N/A <goals>
1451N/A <goal>copy-dependencies</goal>
1451N/A </goals>
1451N/A <configuration>
1451N/A <outputDirectory>${project.build.directory}/artifacts</outputDirectory>
1451N/A <useSubDirectoryPerType>true</useSubDirectoryPerType>
47N/A <overWriteReleases>false</overWriteReleases>
47N/A <overWriteSnapshots>true</overWriteSnapshots>
493N/A <includeScope>compile</includeScope>
47N/A <includeScope>runtime</includeScope>
47N/A <excludeArtifactIds>${packager.artifact.excludes}</excludeArtifactIds>
47N/A <stripVersion>true</stripVersion>
40N/A </configuration>
40N/A </execution>
40N/A </executions>
947N/A </plugin>
947N/A </plugins>
947N/A </build>
947N/A
947N/A <dependencies>
947N/A <!--
40N/A modules to be included in this bundle
40N/A -->
1079N/A <dependency>
40N/A <groupId>org.glassfish.main.osgi-platforms</groupId>
493N/A <artifactId>felix</artifactId>
40N/A <version>${project.version}</version>
40N/A <type>distribution-fragment</type>
40N/A </dependency>
40N/A </dependencies>
40N/A
40N/A <profiles>
40N/A <profile>
40N/A <!--
40N/A Activate this profile with "mvn -Drepo.url=<ips-repository> -Dpython=<python> -P ips"
40N/A -->
40N/A <id>ips</id>
1079N/A <activation>
1079N/A <activeByDefault>false</activeByDefault>
1079N/A </activation>
40N/A <build>
40N/A <plugins>
40N/A <plugin>
40N/A <groupId>org.jvnet.updatecenter2</groupId>
40N/A <artifactId>maven-makepkgs-plugin</artifactId>
40N/A <executions>
1292N/A <execution>
1292N/A <goals>
1292N/A <goal>package</goal>
40N/A </goals>
40N/A </execution>
40N/A </executions>
40N/A <configuration>
1003N/A <remoteRepository>${repo.url}</remoteRepository>
1003N/A <python>${python}</python>
1003N/A <proto>src/main/resources/pkg_proto.py</proto>
40N/A <baseDirectory>target/stage/${install.dir.name}/</baseDirectory>
40N/A </configuration>
70N/A </plugin>
47N/A </plugins>
40N/A </build>
40N/A </profile>
40N/A </profiles>
1451N/A
1451N/A</project>
1451N/A
1451N/A