chat-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.chameleon.chat</groupId> <artifactId>chat-service</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2009 OW2 Chameleon Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <parent> <artifactId>parent-pom</artifactId> <groupId>org.ow2.chameleon</groupId> <version>0.3.2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ow2.chameleon.chat</groupId> <artifactId>chat-service</artifactId> <name>Chat Service Specification</name> <version>1.0.0</version> <packaging>bundle</packaging> <description>This project defines a Chat Service</description> <properties> <interface.version>1.0.0</interface.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>org.ow2.chameleon.chat</Bundle-SymbolicName> <Bundle-Vendor>OW2 Chameleon</Bundle-Vendor> <Include-Resource> {maven-resources}, META-INF/NOTICE = NOTICE, META-INF/LICENSE = LICENSE </Include-Resource> <Export-Package> org.ow2.chameleon.chat; version=${interface.version} </Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/chat-service-1.0.0 </connection> <developerConnection> scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/chat-service-1.0.0 </developerConnection> <url>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/chat-service-1.0.0</url> </scm> <!-- Used for the javadoc deployment --> <distributionManagement> <site> <id>chameleon.website</id> <url> scp://shell.forge.objectweb.org/var/lib/gforge/chroot/home/groups/chameleon/htdocs/api/${project.artifactId}/${project.version} </url> </site> </distributionManagement> </project>