blob: 7f0753537d2f4dc0e9e89356e2abf1f379b16d99 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>17</version>
<relativePath></relativePath> <!-- prevent loading of ../pom.xml as the "parent" -->
</parent>
<groupId>org.apache.brooklyn</groupId>
<artifactId>brooklyn</artifactId>
<version>1.0.0-M1</version> <!-- BROOKLYN_VERSION -->
<packaging>pom</packaging>
<name>Brooklyn Root</name>
<description>
Brooklyn project root, serving as the ancestor POM for all projects
container in the brooklyn-* repositories.
</description>
<url>https://brooklyn.apache.org/</url>
<inceptionYear>2012</inceptionYear>
<developers>
<!-- TODO update with PMC members and committers -->
</developers>
<scm>
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-brooklyn.git</connection>
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-brooklyn.git</developerConnection>
<url>https://git-wip-us.apache.org/repos/asf?p=incubator-brooklyn.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://issues.apache.org/jira/browse/BROOKLYN</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://builds.apache.org/job/incubator-brooklyn-master-build/</url>
</ciManagement>
<mailingLists>
<mailingList>
<name>Brooklyn Developer List</name>
<subscribe>dev-subscribe@brooklyn.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@brooklyn.apache.org</unsubscribe>
<post>dev@brooklyn.apache.org</post>
<archive>
http://mail-archives.apache.org/mod_mbox/brooklyn-dev/
</archive>
</mailingList>
</mailingLists>
<modules>
<module>brooklyn-server</module>
<module>brooklyn-ui</module>
<module>brooklyn-library</module>
</modules>
<profiles>
<profile>
<!-- skip the client CLI by setting -Dno-go-client - useful if Go is not available -->
<id>go-client</id>
<activation>
<property>
<name>!no-go-client</name>
</property>
</activation>
<modules>
<module>brooklyn-client</module>
</modules>
</profile>
<profile>
<!-- also build the dist with a profile; we don't really expect people to opt in to skip, though they can;
mainly this is here to ensure the go-client profile modules if included get built before the dist module -->
<id>dist</id>
<activation>
<property>
<name>!no-dist</name>
</property>
</activation>
<modules>
<module>brooklyn-dist</module>
</modules>
</profile>
</profiles>
</project>