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
b68b8fbb
Commit
b68b8fbb
authored
Mar 19, 2013
by
Gwenael Cattez
Browse files
Add contribution module to helloworld JSON RPC example
parent
64bbb48a
Changes
2
Hide whitespace changes
Inline
Side-by-side
examples/helloworld-jsonrpc/contribution/pom.xml
0 → 100644
View file @
b68b8fbb
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: HelloWorld JSON-RPC Contribution package
*
* Copyright (c) 2013 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: Gwenael Cattez
*
* 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>
helloworld-jsonrpc-parent
</artifactId>
<version>
1.5-SNAPSHOT
</version>
</parent>
<artifactId>
helloworld-jsonrpc-contribution
</artifactId>
<packaging>
pom
</packaging>
<name>
OW2 FraSCAti Examples: helloworld Json Rpc Contribution package
</name>
<build>
<plugins>
<plugin>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
frascati-contribution-plugin
</artifactId>
<version>
${frascati.version}
</version>
<executions>
<execution>
<id>
frascati-contribution
</id>
<phase>
package
</phase>
<goals>
<goal>
install
</goal>
</goals>
</execution>
</executions>
<configuration>
<include>
<dependency>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
helloworld-jsonrpc-server
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
helloworld-jsonrpc-client
</artifactId>
<version>
${project.version}
</version>
</dependency>
</include>
<deployables>
<deployable>
helloworld-jsonrpc-server.composite
</deployable>
<deployable>
helloworld-jsonrpc-client.composite
</deployable>
</deployables>
</configuration>
</plugin>
</plugins>
</build>
</project>
examples/helloworld-jsonrpc/pom.xml
View file @
b68b8fbb
...
...
@@ -56,5 +56,6 @@
<modules>
<module>
client
</module>
<module>
server
</module>
<module>
contribution
</module>
</modules>
</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