context-help-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.aperteworkflow</groupId>
<artifactId>context-help-provider</artifactId>
<version>3.2-RC1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>plugins</artifactId>
<groupId>org.aperteworkflow</groupId>
<version>3.2-RC1</version>
</parent>
<artifactId>context-help-provider</artifactId>
<name>context-help-provider</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin</artifactId>
<version>${vaadin.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.aperteworkflow</groupId>
<artifactId>integration-interface</artifactId>
<version>3.2-RC1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.aperteworkflow</groupId>
<artifactId>gui-commons</artifactId>
<version>3.2-RC1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.vaadin.addons</groupId>
<artifactId>contexthelp</artifactId>
<version>1.3.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<version>2.1.0</version>
<configuration>
<instructions>
<Export-Package>
org.aperteworkflow.help.impl
</Export-Package>
<Import-Package>
*;resolution:=optional,
org.aperteworkflow.ui.help
</Import-Package>
<Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
<Bundle-SymbolicName>org.aperteworkflow.help.impl</Bundle-SymbolicName>
<Bundle-Version>${version}</Bundle-Version>
<Embed-Directory>lib</Embed-Directory>
<Embed-Transitive>true</Embed-Transitive>
<Bundle-Activator>org.aperteworkflow.help.impl.ContextHelpProviderBundleActivator</Bundle-Activator>
<!--<ProcessTool-I18N-Property>userdata-messages</ProcessTool-I18N-Property>-->
<!--<ProcessTool-Model-Enhancement>pl.net.bluesoft.rnd.pt.ext.userdata.model.ProcessInstanceUserAssignment</ProcessTool-Model-Enhancement>-->
<!--<ProcessTool-Widget-Enhancement>pl.net.bluesoft.rnd.pt.ext.userdata.widget.LdapUserDataWidget,pl.net.bluesoft.rnd.pt.ext.userdata.widget.LiferayUserDataWidget</ProcessTool-Widget-Enhancement>-->
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<!-- Profil dev do automatycznego kopiowania jarow do osgi -->
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy-installed</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<type>jar</type>
<version>${project.version}</version>
<overWrite>true</overWrite>
<outputDirectory>${osgi.dir}</outputDirectory>
<destFileName>${project.artifactId}-${project.version}.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>