summaryrefslogtreecommitdiffstats
path: root/wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml')
-rw-r--r--wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml65
1 files changed, 42 insertions, 23 deletions
diff --git a/wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml b/wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml
index d75ede0..1f435eb 100644
--- a/wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml
+++ b/wso2bpel-ext/wso2bpel-core/distribution/standalone/pom.xml
@@ -132,35 +132,48 @@
</artifactItems>
</configuration>
</execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>unzip-wso2bps</id>
+ <execution>
+ <id>unzip-wso2bps-${linux64id}</id>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
<phase>generate-resources</phase>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.wso2</groupId>
+ <artifactId>wso2bps</artifactId>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>${linux64outputdir}/wso2bps</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ <execution>
+ <id>unzip-wso2bps-${win64id}</id>
<goals>
- <goal>run</goal>
+ <goal>unpack</goal>
</goals>
+ <phase>generate-resources</phase>
<configuration>
- <target name="unzip-wso2bps">
- <unzip src="lib/wso2bps-3.5.0.zip" dest="target/assembly/wso2bps">
- </unzip>
- <copy todir="${linux64outputdir}/wso2bps">
- <fileset dir="target/assembly/wso2bps/wso2bps-3.5.0">
- <exclude name="**/*.bat"/>
- </fileset>
- </copy>
- <copy todir="${win64outputdir}/wso2bps">
- <fileset dir="target/assembly/wso2bps/wso2bps-3.5.0">
- <exclude name="**/*.sh"/>
- </fileset>
- </copy>
- </target>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.wso2</groupId>
+ <artifactId>wso2bps</artifactId>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>${win64outputdir}/wso2bps</outputDirectory>
+ </artifactItem>
+ </artifactItems>
</configuration>
</execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
<execution>
<id>distribution</id>
<phase>package</phase>
@@ -206,5 +219,11 @@
<artifactId>wso2bpel-mgr</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.wso2</groupId>
+ <artifactId>wso2bps</artifactId>
+ <version>3.5.0</version>
+ <type>zip</type>
+ </dependency>
</dependencies>
</project>