Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
frascati
frascati
Commits
a8e6c16a
Commit
a8e6c16a
authored
Mar 20, 2013
by
Gwenael Cattez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add contribution module to helloworld UPnP example
parent
71eb337d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
0 deletions
+84
-0
examples/helloworld-upnp/contribution/pom.xml
examples/helloworld-upnp/contribution/pom.xml
+83
-0
examples/helloworld-upnp/pom.xml
examples/helloworld-upnp/pom.xml
+1
-0
No files found.
examples/helloworld-upnp/contribution/pom.xml
0 → 100644
View file @
a8e6c16a
<?xml version="1.0"?>
<!--
* >OW2 FraSCAti Examples: HelloWorld UPnP 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-upnp-parent
</artifactId>
<version>
1.5-SNAPSHOT
</version>
</parent>
<artifactId>
helloworld-upnp-contribution
</artifactId>
<packaging>
pom
</packaging>
<name>
OW2 FraSCAti Examples: helloworld UPnP 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-upnp-server
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
helloworld-upnp-client
</artifactId>
<version>
${project.version}
</version>
</dependency>
</include>
<deployables>
<deployable>
helloworld-upnp-server.composite
</deployable>
<deployable>
helloworld-upnp-client.composite
</deployable>
</deployables>
</configuration>
</plugin>
</plugins>
</build>
</project>
examples/helloworld-upnp/pom.xml
View file @
a8e6c16a
...
...
@@ -57,6 +57,7 @@
<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