[UBER] add pom in brooklyn uber project subdir to build everything it's the same as the pom in the root, but referring to ../ for submodules
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/78ea56a6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/78ea56a6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/78ea56a6 Branch: refs/heads/master Commit: 78ea56a6ab7725a2e87e1050947fcf3fa5580d15 Parents: 0d1ca4b Author: Alex Heneveld <[email protected]> Authored: Fri Dec 18 22:37:01 2015 +0000 Committer: Alex Heneveld <[email protected]> Committed: Mon Dec 21 16:43:37 2015 +0000 ---------------------------------------------------------------------- brooklyn/README.md | 5 +-- brooklyn/pom.xml | 81 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/78ea56a6/brooklyn/README.md ---------------------------------------------------------------------- diff --git a/brooklyn/README.md b/brooklyn/README.md index 6b66cf2..519dbf8 100644 --- a/brooklyn/README.md +++ b/brooklyn/README.md @@ -11,11 +11,12 @@ For more information see **[brooklyn.apache.org](https://brooklyn.apache.org/)** ### To Build -The code can be built with a: +This is the uber-repo. To build the product, ensure that the other `brooklyn-*` projects are checked out, +currently as *siblings* to this directory (but with a notion to make them submodules), and then: mvn clean install -This creates a build in `usage/dist/target/brooklyn-dist`. Run with `bin/brooklyn launch`. +This creates a build in `brooklyn-dist/usage/dist/target/brooklyn-dist`. Run with `bin/brooklyn launch`. The **[developer guide](https://brooklyn.apache.org/v/latest/dev/)** has more information about the source code. http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/78ea56a6/brooklyn/pom.xml ---------------------------------------------------------------------- diff --git a/brooklyn/pom.xml b/brooklyn/pom.xml new file mode 100644 index 0000000..9e0a5eb --- /dev/null +++ b/brooklyn/pom.xml @@ -0,0 +1,81 @@ +<?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> + </parent> + + <groupId>org.apache.brooklyn</groupId> + <artifactId>brooklyn</artifactId> + <version>0.9.SPLITWIP-SNAPSHOT</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>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</post> + <archive> + http://mail-archives.apache.org/mod_mbox/brooklyn-dev/ + </archive> + </mailingList> + </mailingLists> + + <modules> + <module>../brooklyn-ui</module> + <module>../brooklyn-server</module> + <module>../brooklyn-library</module> + <module>../brooklyn-dist</module> + </modules> + +</project>
