user-substitution-step
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.aperteworkflow</groupId>
<artifactId>user-substitution-step</artifactId>
<version>3.0-beta1</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.0-beta1</version>
</parent>
<artifactId>user-substitution-step</artifactId>
<packaging>bundle</packaging>
<name>user-substitution-step</name>
<repositories>
<repository>
<id>vaadin-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
</snapshots>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.vaadin.com/vaadin-addons</url>
</repository>
</repositories>
<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.0-beta1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.aperteworkflow</groupId>
<artifactId>gui-commons</artifactId>
<version>3.0-beta1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- <plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.4</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dateFormat>HH:mm dd.MM.yyyy</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
</configuration>
</plugin> -->
<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.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
</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>
pl.net.bluesoft.rnd.pt.ext.usersubstitution.step,
pl.net.bluesoft.rnd.pt.ext.usersubstitution.widget
</Export-Package>
<Import-Package>
*;resolution:=optional,
com.vaadin.data.util,
com.vaadin.ui,
pl.net.bluesoft.rnd.processtool,
pl.net.bluesoft.rnd.processtool.model,
pl.net.bluesoft.rnd.processtool.steps,
pl.net.bluesoft.rnd.processtool.ui.widgets,
pl.net.bluesoft.rnd.processtool.ui.widgets.impl,
pl.net.bluesoft.rnd.processtool.ui.widgets.annotations,
org.aperteworkflow.util.liferay
</Import-Package>
<Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
<Bundle-SymbolicName>pl.net.bluesoft.rnd.pt.ext.usersubstitution</Bundle-SymbolicName>
<Bundle-Version>0.1</Bundle-Version>
<Embed-Directory>lib</Embed-Directory>
<Embed-Transitive>true</Embed-Transitive>
<ProcessTool-Widget-Enhancement>pl.net.bluesoft.rnd.pt.ext.usersubstitution.widget.UserSubstitutionRequestWidget
</ProcessTool-Widget-Enhancement>
<ProcessTool-Step-Enhancement>
pl.net.bluesoft.rnd.pt.ext.usersubstitution.step.HandleSubstitutionAcceptance
</ProcessTool-Step-Enhancement>
<ProcessTool-I18N-Property>messages</ProcessTool-I18N-Property>
<ProcessTool-Widget-View>
pl.net.bluesoft.rnd.pt.ext.usersubstitution.widget.UserSubstitutionComment
</ProcessTool-Widget-View>
</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</id>
<phase>package</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>