blob: 9d2d681f7fb87ea314e31d51a869afaafa56bac0 [file] [log] [blame]
/*
* 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.
*/
digraph g {
graph [compound = true];
//presentation
splines = true;
overlap = false;
rankdir = LR;
subgraph cluster_git {
label="git";
git_streams_master [shape=box, label="incubator-streams-master", URL="https://git-wip-us.apache.org/repos/asf?p=incubator-streams-master.git;a=summary"];
git_streams_project [shape=box, label="incubator-streams", URL="https://git-wip-us.apache.org/repos/asf?p=incubator-streams.git;a=summary"];
git_streams_examples [shape=box, label="incubator-streams-examples", URL="https://git-wip-us.apache.org/repos/asf?p=incubator-streams-examples.git;a=summary"];
}
subgraph cluster_jenkins {
label="jenkins";
rankdir = TB;
jenkins_streams_master [label="streams-master", URL="https://builds.apache.org/job/streams-master"];
jenkins_streams_trunk [label="streams-project", URL="https://builds.apache.org/job/streams-project"];
jenkins_streams_trunk_verify [label="streams-project-verify", URL="https://builds.apache.org/job/streams-project-verify"];
jenkins_streams_project_site [label="streams-project-site", URL="https://builds.apache.org/job/streams-project-site"];
jenkins_streams_examples [label="streams-examples", URL="https://builds.apache.org/job/streams-examples"];
jenkins_streams_examples_verify [label="streams-examples-verify", URL="https://builds.apache.org/job/streams-examples-verify"];
jenkins_streams_examples_site [label="streams-examples-site", URL="https://builds.apache.org/job/streams-examples-site"];
}
subgraph cluster_maven {
label="maven";
maven_streams_master [shape=box, label="streams-master", URL="https://repository.apache.org/content/repositories/snapshots/org/apache/streams/streams-master/"];
maven_streams_project [shape=box, label="streams-project", URL="https://repository.apache.org/content/repositories/snapshots/org/apache/streams/streams-project/"];
maven_streams_examples [shape=box, label="streams-examples", URL="https://repository.apache.org/content/repositories/snapshots/org/apache/streams/streams-examples/"];
}
subgraph cluster_site {
label="site";
site_streams_master [shape=box, label="streams-master", URL="http://streams.incubator.apache.org/site/latest/streams-master/"];
site_streams_project [shape=box, label="streams-project", URL="http://streams.incubator.apache.org/site/latest/streams-project/"];
site_streams_examples [shape=box, label="streams-examples", URL="http://streams.incubator.apache.org/site/latest/streams-examples/"];
}
git_streams_master -> jenkins_streams_master [style="dashed"]
git_streams_project -> jenkins_streams_trunk [style="dashed"]
git_streams_project -> jenkins_streams_project_site [style="dashed"]
git_streams_project -> jenkins_streams_trunk_verify [style="dashed"]
git_streams_examples -> jenkins_streams_examples [style="dashed"]
git_streams_examples -> jenkins_streams_examples_verify [style="dashed"]
git_streams_examples -> jenkins_streams_examples_site [style="dashed"]
jenkins_streams_master -> maven_streams_master
jenkins_streams_trunk -> maven_streams_project
jenkins_streams_examples -> maven_streams_examples
jenkins_streams_master -> site_streams_master
jenkins_streams_project_site -> site_streams_project
jenkins_streams_examples_site -> site_streams_examples
jenkins_streams_master -> jenkins_streams_trunk [style="dotted"]
jenkins_streams_trunk -> jenkins_streams_trunk_verify [style="dotted"]
jenkins_streams_trunk -> jenkins_streams_project_site [style="dotted"]
jenkins_streams_trunk -> jenkins_streams_examples [style="dotted"]
jenkins_streams_examples -> jenkins_streams_examples_verify [style="dotted"]
jenkins_streams_examples -> jenkins_streams_examples_site [style="dotted"]
}