nazgul-test-hello-reactor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.jguru.nazgul.test.bundles.hello</groupId> <artifactId>nazgul-test-hello-reactor</artifactId> <version>3.0.2</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <!-- ~ Copyright (c) jGuru Europe AB. ~ All rights reserved. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ################################################ # Section 1: Project information ################################################ --> <parent> <groupId>se.jguru.nazgul.test.bundles</groupId> <artifactId>nazgul-test-bundles-reactor</artifactId> <version>3.0.2</version> </parent> <groupId>se.jguru.nazgul.test.bundles.hello</groupId> <artifactId>nazgul-test-hello-reactor</artifactId> <name>${project.artifactId}</name> <url>${url.prefix}/${path.in.reactor}</url> <packaging>pom</packaging> <properties> <path.in.reactor>bundles/hello</path.in.reactor> </properties> <!-- ################################################ # Section 2: Module definitions ################################################ --> <modules> <module>hello-api</module> <module>hello-impl-blueprint</module> <module>hello-impl-plain</module> <module>hello-client-blueprint</module> </modules> <!-- ################################################ # Section 4: External systems ################################################ --> <!-- Define repository settings for Maven's deploy and release plugins. Moved to settings.xml, as per recommendation within Maven specs. --> <distributionManagement> <site> <id>jGuru_NazgulTestSite</id> <name>jGuru_NazgulTestSite</name> <url>${distro.url.prefix}/${path.in.reactor}</url> </site> </distributionManagement> <!-- Define connections for Maven's VCS integration. --> <scm> <connection>${scm.url.prefix}/${reactor.name}</connection> <developerConnection>${scm.url.prefix}/${reactor.name}</developerConnection> <url>${reactor.url.remote.prefix}/${reactor.name}</url> <tag>nazgul-test-3.0.2</tag> </scm> </project>