Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frascati
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
114
Issues
114
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
frascati
frascati
Commits
b68b8fbb
Commit
b68b8fbb
authored
Mar 19, 2013
by
Gwenael Cattez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add contribution module to helloworld JSON RPC example
parent
64bbb48a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
0 deletions
+84
-0
examples/helloworld-jsonrpc/contribution/pom.xml
examples/helloworld-jsonrpc/contribution/pom.xml
+83
-0
examples/helloworld-jsonrpc/pom.xml
examples/helloworld-jsonrpc/pom.xml
+1
-0
No files found.
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
Markdown
is supported
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