blob: 754311bed7d01a2a48c8d8913f27a80e88040700 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2020 BSI Business Systems Integration AG.
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v1.0
~ which accompanies this distribution, and is available at
~ https://www.eclipse.org/legal/epl-v10.html
~
~ Contributors:
~ BSI Business Systems Integration AG - initial API and implementation
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.scout.sdk</groupId>
<artifactId>org.eclipse.scout.sdk</artifactId>
<version>11.0.15</version>
<relativePath>../org.eclipse.scout.sdk</relativePath>
</parent>
<groupId>org.eclipse.scout.sdk.s2e</groupId>
<artifactId>org.eclipse.scout.sdk.s2e.doc</artifactId>
<packaging>bundle</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<properties>
<bundle.symbolicName>${project.artifactId}</bundle.symbolicName>
<bundle.namespace>${project.artifactId}</bundle.namespace>
<bundle.version>${scout.osgi.version}</bundle.version>
</properties>
<dependencies>
<!-- Build Dependencies -->
<!-- Build Dependencies (Provided) -->
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.help</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>.</directory>
<includes>
<include>about.html</include>
<include>contexts_scout.xml</include>
<include>epl-v10.html</include>
<include>plugin.xml</include>
<include>toc.xml</include>
<include>html/**</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-Name>Scout SDK Documentation</Bundle-Name>
<Require-Bundle>
org.eclipse.help;bundle-version="[3.8.700,4)"
</Require-Bundle>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>