parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.weblab.components</groupId>
<artifactId>parent</artifactId>
<version>1.2.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <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.weblab.services</groupId> <artifactId>parent</artifactId> <version>1.2.2</version> <relativePath>../../parent/pom.xml</relativePath> </parent> <groupId>org.ow2.weblab.components</groupId> <artifactId>parent</artifactId> <version>1.2.3</version> <packaging>pom</packaging> <name>WebLab Components Parent POM</name> <dependencies> <dependency> <groupId>org.ow2.weblab.core</groupId> <artifactId>model</artifactId> </dependency> <dependency> <groupId>org.ow2.weblab.core</groupId> <artifactId>extended</artifactId> </dependency> <dependency> <groupId>org.ow2.weblab.core</groupId> <artifactId>annotator</artifactId> </dependency> <!-- External dependency --> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <!-- Test dependency --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <description>This is a generic parent for Components developed for the WebLab platform.</description> <scm> <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/weblab/trunk/WebLabServices/Components</connection> <developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/weblab/trunk/WebLabServices/Components</developerConnection> </scm> </project>