model-bpel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.bpelunit</groupId> <artifactId>model-bpel</artifactId> <version>1.6.1</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/maven-v4_0_0.xsd"> <parent> <artifactId>bpelunit</artifactId> <groupId>net.bpelunit</groupId> <version>1.6.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>model-bpel</artifactId> <version>1.6.1</version> <packaging>jar</packaging> <name>BPELUnit :: BPEL Model</name> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>3rdpartylicenses</directory> <targetPath>3rdpartylicenses</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>net/bpelunit/test/unit/SimpleTest.java</exclude> <exclude>net/bpelunit/test/util/TestUtil.java</exclude> <exclude>net/bpelunit/test/util/TestTestRunner.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- In addition to the regular .jar, generate an OSGi bundle Tycho can reuse --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>net.bpelunit.model.bpel</Export-Package> <Import-Package>!*</Import-Package> <Bundle-SymbolicName>net.bpelunit.model.bpel;symbolic:=true</Bundle-SymbolicName> <Embed-Transitive>true</Embed-Transitive> <Embed-Directory>target/dependency</Embed-Directory> <Embed-Dependency>*;scope=compile;artifactId=!stax-api</Embed-Dependency> <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>