blob: 1a10ede4a06e2e37472082ec4684b93f1d734455 [file] [log] [blame]
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<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>
<parent>
<artifactId>\${rootArtifactId}</artifactId>
<groupId>\${groupId}</groupId>
<version>\${version}</version>
</parent>
<artifactId>\${artifactId}</artifactId>
<packaging>content-package</packaging>
<name>\${artifactName} - UI Apps</name>
<description>
This is an empty JCR Package where the JCR Content
can be deployed with.
For a "not all" package this JCR Package will embedd
the "core" bundle. It can be deployed with the
"autoInstallPackage" profile.
For an "all" package this only provides the content
of the project which is deployed in the root with
the "autoInstallAll" profile.
It is advisable to deploy any bundles or packages
in one manner as deploying bundles inside a package
and through the System Console can lead to unexpected
and errorneous situations.
</description>
<!-- @startForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
<dependencies>
<dependency>
<groupId>\${project.groupId}</groupId>
<artifactId>core</artifactId>
<version>\${project.version}</version>
</dependency>
</dependencies>
<!-- @endForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
<build>
<plugins>
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
<configuration>
<filterSource>\${basedir}/src/main/content/META-INF/vault/filter.xml</filterSource>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
<!-- @startForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
<configuration>
<embeddedTarget>/apps/\${appsFolderName}/install</embeddedTarget>
<embeddeds>
<embedded>
<groupId>\${project.groupId}</groupId>
<artifactId>core</artifactId>
<filter>true</filter>
</embedded>
</embeddeds>
</configuration>
<!-- @endForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- @startForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
<profiles>
<!-- ATTENTION: It is highly recomended not to deploy this with this Profile if this Package was or will be deployed with the All package -->
<profile>
<id>autoInstallPackage</id>
<build>
<plugins>
<plugin>
<groupId>io.wcm.maven.plugins</groupId>
<artifactId>wcmio-content-package-maven-plugin</artifactId>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- @endForNotAll@ This is used for the Post Generation Handling. Do not alter or remove -->
</project>