Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
frascati
frascati
Commits
58b18632
Commit
58b18632
authored
Jul 16, 2010
by
Philippe Merle
Browse files
Added a Maven module which will be the parent of all FraSCAti BPEL-based examples.
parent
61807887
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/bpel-parent/pom.xml
0 → 100644
View file @
58b18632
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: BPEL Parent
*
* Copyright (c) 2010 INRIA, University of Lille 1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Contact: frascati@ow2.org
*
* Author: Philippe Merle
*
* Contributor(s):
-->
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
parent
</artifactId>
<version>
1.3-SNAPSHOT
</version>
</parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
bpel-parent
</artifactId>
<packaging>
pom
</packaging>
<name>
OW2 FraSCAti Examples: BPEL Parent
</name>
<build>
<defaultGoal>
install
</defaultGoal>
<plugins>
<!-- Compile the SCA composite. -->
<plugin>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
frascati-compiler-plugin
</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Support for <sca:implementation.bpel> -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-implementation-bpel
</artifactId>
<version>
${frascati.version}
</version>
</dependency>
<!-- For JUnit testing. -->
<dependency>
<groupId>
org.ow2.frascati.examples.test
</groupId>
<artifactId>
frascati-test
</artifactId>
<version>
${frascati.version}
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<profiles>
<!-- To execute an SCA composite type 'mvn -Prun'. -->
<profile>
<id>
run
</id>
<build>
<defaultGoal>
org.ow2.frascati.mojo:frascati-launcher-plugin:1.3-SNAPSHOT:exec
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
frascati-launcher-plugin
</artifactId>
<!-- Dependency needed to avoid org.apache.xerces.impl.dv.DVFactoryException, CXF issue -->
<dependencies>
<dependency>
<groupId>
xerces
</groupId>
<artifactId>
xercesImpl
</artifactId>
<version>
${xerces.version}
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<!-- To execute an SCA composite with FraSCAti Explorer type 'mvn -Pexplorer'. -->
<profile>
<id>
explorer
</id>
<build>
<defaultGoal>
exec:java
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
<configuration>
<systemProperties>
<systemProperty>
<!-- Warning, following is required by EasyViper: julia.cfg is the Julia config for EasyViper. -->
<key>
julia.config
</key>
<value>
julia.cfg
</value>
</systemProperty>
<systemProperty>
<!-- Following configures if EasyBPEL/Viper Explorer is launched at boot time. -->
<key>
easybpel.explorer
</key>
<value>
true
</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment