Rename ovsdb-custom to ovsdb-sonar
[releng/builder.git] / scripts / jjblib.py
index 51cf9c046dde1e441c622722adeeb6115d7ff954..f48ab916699a2b7c0f523213874bf22b292b8ae5 100644 (file)
@@ -32,9 +32,9 @@ def parse_jjb_args():
 
 
 STREAM_DEFAULTS = collections.OrderedDict([
-    ("beryllium", {"branch": "master", "jdks": "openjdk7"}),
+    ("boron", {"branch": "master", "jdks": "openjdk8"}),
+    ("beryllium", {"branch": "stable/beryllium", "jdks": "openjdk8"}),
     ("stable-lithium", {"branch": "stable/lithium", "jdks": "openjdk7"}),
-    ("stable-helium", {"branch": "stable/helium", "jdks": "openjdk7"}),
 ])
 
 
@@ -78,7 +78,16 @@ def create_template_config(project_dir, args):
 
 
 class Project:
+    """Represents a Gerrit Project
+
+    Attributes:
+        path(str): The full Gerrit path to a project
+        meta_project(str): The top-level project name in Gerrit
+        project(str): The subproject name or project shortname
+    """
+
     def __init__(self, project):
+        self.path = project
         self.meta_project = None
         self.project = project