BUG-2625: validate snmp4sdn using jdk8 only
[releng/builder.git] / scripts / jjblib.py
index 51cf9c046dde1e441c622722adeeb6115d7ff954..50c5643702b4dec092f8b268d73cd58154d30964 100644 (file)
@@ -32,7 +32,8 @@ 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 +79,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