Remove Buck based build The Buck build isn't expected to work on 2.14 or later Gerrit versions. Change-Id: I5a39d7cfd20dd5c8d43c2cb1f350805c405f9ec4
diff --git a/README b/README index 4889aad..b268063 100644 --- a/README +++ b/README
@@ -44,74 +44,9 @@ -Buck Build +Maven Build ========== -This plugin can be built with Buck. - -Two build modes are supported: Standalone and in Gerrit tree. Standalone -build mode is recommended, as this mode doesn't require local Gerrit -tree to exist. - -Build standalone ----------------- - -Clone bucklets library: - - - git clone https://gerrit.googlesource.com/bucklets - - -and link it to examples directory: - - - cd examples && ln -s ../bucklets . - - -To build a specific example plugin, issue the following command: - - - cd example-<example> && buck build plugin - - -The output or each example is created in - - - buck-out/gen/example-<example>.jar - -To execute the tests run: - - - buck test - - -Build in Gerrit tree --------------------- - -Clone or link this plugin to the plugins directory of Gerrit's source -tree, and issue the command: - - - buck build plugins/examples/example-<example> - - -The output is created in - - - buck-out/gen/plugins/examples/example-<example>/example-<example>.jar - - -This project can be imported into the Eclipse IDE: - - - ./tools/eclipse/project.py - - -To execute the tests run: - - - buck test --include examples/example-<example> - Note that for compatibility reasons a Maven build is provided, but is considered to be deprecated and will be removed in a future version of this plugin. @@ -125,4 +60,4 @@ When building with Maven, the Gerrit Plugin API must be available. How to build the Gerrit Plugin API is described in the Gerrit -documentation (../../../Documentation/dev-buck.html#_extension_and_plugin_api_jar_files). +documentation (../../../Documentation/dev-bazel.html#_extension_and_plugin_api_jar_files).
diff --git a/example-adminSshCommand/.buckconfig b/example-adminSshCommand/.buckconfig deleted file mode 100644 index 4cb7797..0000000 --- a/example-adminSshCommand/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-adminSshCommand - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-adminSshCommand/BUCK b/example-adminSshCommand/BUCK deleted file mode 100644 index 5520b69..0000000 --- a/example-adminSshCommand/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-adminSshCommand', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-adminSshCommand', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.adminsshcommand.SshModule', - 'Implementation-Title: Example Admin Ssh Command', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-adminSshCommand__plugin'], -)
diff --git a/example-adminSshCommand/lib/gerrit/BUCK b/example-adminSshCommand/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-adminSshCommand/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-changeHasOperator/.buckconfig b/example-changeHasOperator/.buckconfig deleted file mode 100644 index 1ef8ff0..0000000 --- a/example-changeHasOperator/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-changeHasOperator - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-changeHasOperator/.gitignore b/example-changeHasOperator/.gitignore index db1c934..16a6bd7 100644 --- a/example-changeHasOperator/.gitignore +++ b/example-changeHasOperator/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-changeHasOperator/BUCK b/example-changeHasOperator/BUCK deleted file mode 100644 index d076b60..0000000 --- a/example-changeHasOperator/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-changeHasOperator', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-changeHasOperator', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.changehasoperator.Module', - 'Implementation-Title: Example Change Has Operator', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-changeHasOperator__plugin'], -)
diff --git a/example-changeHasOperator/lib/gerrit/BUCK b/example-changeHasOperator/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-changeHasOperator/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-changeOperator/.buckconfig b/example-changeOperator/.buckconfig deleted file mode 100644 index 0971b8a..0000000 --- a/example-changeOperator/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-changeOperator - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-changeOperator/.gitignore b/example-changeOperator/.gitignore index db1c934..16a6bd7 100644 --- a/example-changeOperator/.gitignore +++ b/example-changeOperator/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-changeOperator/BUCK b/example-changeOperator/BUCK deleted file mode 100644 index 1a77256..0000000 --- a/example-changeOperator/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-changeOperator', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-changeOperator', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.changeoperator.Module', - 'Implementation-Title: Example changeOperator', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-changeOperator__plugin'], -)
diff --git a/example-changeOperator/lib/gerrit/BUCK b/example-changeOperator/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-changeOperator/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-commitValidator/.buckconfig b/example-commitValidator/.buckconfig deleted file mode 100644 index 0418874..0000000 --- a/example-commitValidator/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-commitValidator - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-commitValidator/BUCK b/example-commitValidator/BUCK deleted file mode 100644 index e0127fe..0000000 --- a/example-commitValidator/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-commitValidator', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-commitValidator', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.commitvalidator.Module', - 'Implementation-Title: Example Commit Validator', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-commitvalidator__plugin'], -)
diff --git a/example-commitValidator/lib/gerrit/BUCK b/example-commitValidator/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-commitValidator/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-consoleMetricReporter/.buckconfig b/example-consoleMetricReporter/.buckconfig deleted file mode 100644 index e1b61c4..0000000 --- a/example-consoleMetricReporter/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-consoleMetricReporter - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-consoleMetricReporter/.gitignore b/example-consoleMetricReporter/.gitignore index dd528a6..bd20ac3 100644 --- a/example-consoleMetricReporter/.gitignore +++ b/example-consoleMetricReporter/.gitignore
@@ -2,8 +2,5 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml /bazel-example-consoleMetricReporter
diff --git a/example-consoleMetricReporter/BUCK b/example-consoleMetricReporter/BUCK deleted file mode 100644 index bc4703d..0000000 --- a/example-consoleMetricReporter/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-consoleMetricReporter', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-consoleMetricReporter', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.consolemetricreporter.Module', - 'Implementation-Title: Example consoleMetricReporter', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-consoleMetricReporter__plugin'], -)
diff --git a/example-consoleMetricReporter/lib/gerrit/BUCK b/example-consoleMetricReporter/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-consoleMetricReporter/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-deployedOnIncludedInExtension/.buckconfig b/example-deployedOnIncludedInExtension/.buckconfig deleted file mode 100644 index a311abb..0000000 --- a/example-deployedOnIncludedInExtension/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-deployedOnIncludedInExtension - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-deployedOnIncludedInExtension/BUCK b/example-deployedOnIncludedInExtension/BUCK deleted file mode 100644 index e0d1ff8..0000000 --- a/example-deployedOnIncludedInExtension/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-deployedOnIncludedInExtension', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-deployedOnIncludedInExtension', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.deployedonincludedinextension.Module', - 'Implementation-Title: Example Deployed On Included-In Extension', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-deployedOnIncludedInExtension__plugin'], -)
diff --git a/example-deployedOnIncludedInExtension/lib/gerrit/BUCK b/example-deployedOnIncludedInExtension/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-deployedOnIncludedInExtension/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-restApiGetRevision/.buckconfig b/example-restApiGetRevision/.buckconfig deleted file mode 100644 index a5765f2..0000000 --- a/example-restApiGetRevision/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-restApiGetRevision - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-restApiGetRevision/.buckversion b/example-restApiGetRevision/.buckversion deleted file mode 120000 index 6203e53..0000000 --- a/example-restApiGetRevision/.buckversion +++ /dev/null
@@ -1 +0,0 @@ -bucklets/buckversion \ No newline at end of file
diff --git a/example-restApiGetRevision/.gitignore b/example-restApiGetRevision/.gitignore index db1c934..16a6bd7 100644 --- a/example-restApiGetRevision/.gitignore +++ b/example-restApiGetRevision/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-restApiGetRevision/BUCK b/example-restApiGetRevision/BUCK deleted file mode 100644 index c1053cc..0000000 --- a/example-restApiGetRevision/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-restApiGetRevision', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-restApiGetRevision', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.restapigetrevision.SshModule', - 'Implementation-Title: Example Simple Ssh Command', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-restApiGetRevision__plugin'], -)
diff --git a/example-restApiGetRevision/bucklets b/example-restApiGetRevision/bucklets deleted file mode 120000 index faeb10e..0000000 --- a/example-restApiGetRevision/bucklets +++ /dev/null
@@ -1 +0,0 @@ -../bucklets \ No newline at end of file
diff --git a/example-restApiGetRevision/lib/gerrit/BUCK b/example-restApiGetRevision/lib/gerrit/BUCK deleted file mode 100644 index b54f677..0000000 --- a/example-restApiGetRevision/lib/gerrit/BUCK +++ /dev/null
@@ -1,12 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-restApiPostProject/.buckconfig b/example-restApiPostProject/.buckconfig deleted file mode 100644 index c8c0733..0000000 --- a/example-restApiPostProject/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-restApiPostProject - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-restApiPostProject/.buckversion b/example-restApiPostProject/.buckversion deleted file mode 120000 index 6203e53..0000000 --- a/example-restApiPostProject/.buckversion +++ /dev/null
@@ -1 +0,0 @@ -bucklets/buckversion \ No newline at end of file
diff --git a/example-restApiPostProject/.gitignore b/example-restApiPostProject/.gitignore index db1c934..16a6bd7 100644 --- a/example-restApiPostProject/.gitignore +++ b/example-restApiPostProject/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-restApiPostProject/BUCK b/example-restApiPostProject/BUCK deleted file mode 100644 index 80e0cb8..0000000 --- a/example-restApiPostProject/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-restApiPostProject', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-restApiPostProject', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.restapipostproject.SshModule', - 'Implementation-Title: Example Simple Ssh Command', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-restApiPostProject__plugin'], -)
diff --git a/example-restApiPostProject/bucklets b/example-restApiPostProject/bucklets deleted file mode 120000 index faeb10e..0000000 --- a/example-restApiPostProject/bucklets +++ /dev/null
@@ -1 +0,0 @@ -../bucklets \ No newline at end of file
diff --git a/example-restApiPostProject/lib/gerrit/BUCK b/example-restApiPostProject/lib/gerrit/BUCK deleted file mode 100644 index b54f677..0000000 --- a/example-restApiPostProject/lib/gerrit/BUCK +++ /dev/null
@@ -1,12 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-restApiPostRevision/.buckconfig b/example-restApiPostRevision/.buckconfig deleted file mode 100644 index 36a0a17..0000000 --- a/example-restApiPostRevision/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-restApiPostRevision - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-restApiPostRevision/.buckversion b/example-restApiPostRevision/.buckversion deleted file mode 120000 index 6203e53..0000000 --- a/example-restApiPostRevision/.buckversion +++ /dev/null
@@ -1 +0,0 @@ -bucklets/buckversion \ No newline at end of file
diff --git a/example-restApiPostRevision/.gitignore b/example-restApiPostRevision/.gitignore index db1c934..16a6bd7 100644 --- a/example-restApiPostRevision/.gitignore +++ b/example-restApiPostRevision/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-restApiPostRevision/BUCK b/example-restApiPostRevision/BUCK deleted file mode 100644 index b39bbec..0000000 --- a/example-restApiPostRevision/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-restApiPostRevision', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-restApiPostRevision', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.restapipostrevision.SshModule', - 'Implementation-Title: Example Simple Ssh Command', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-restApiPostRevision__plugin'], -)
diff --git a/example-restApiPostRevision/bucklets b/example-restApiPostRevision/bucklets deleted file mode 120000 index faeb10e..0000000 --- a/example-restApiPostRevision/bucklets +++ /dev/null
@@ -1 +0,0 @@ -../bucklets \ No newline at end of file
diff --git a/example-restApiPostRevision/lib/gerrit/BUCK b/example-restApiPostRevision/lib/gerrit/BUCK deleted file mode 100644 index b54f677..0000000 --- a/example-restApiPostRevision/lib/gerrit/BUCK +++ /dev/null
@@ -1,12 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-servlet/.buckconfig b/example-servlet/.buckconfig deleted file mode 100644 index f3348a3..0000000 --- a/example-servlet/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-servlet - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-servlet/.gitignore b/example-servlet/.gitignore index dd66af4..adac181 100644 --- a/example-servlet/.gitignore +++ b/example-servlet/.gitignore
@@ -2,8 +2,5 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml /bazel-example-servlet
diff --git a/example-servlet/BUCK b/example-servlet/BUCK deleted file mode 100644 index 0c07509..0000000 --- a/example-servlet/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-servlet', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-servlet', - 'Gerrit-HttpModule: com.googlesource.gerrit.plugins.examples.servlet.HttpModule', - 'Implementation-Title: Example Servlet', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-servlet__plugin'], -)
diff --git a/example-servlet/lib/gerrit/BUCK b/example-servlet/lib/gerrit/BUCK deleted file mode 100644 index b54f677..0000000 --- a/example-servlet/lib/gerrit/BUCK +++ /dev/null
@@ -1,12 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-simpleSshCommand/.buckconfig b/example-simpleSshCommand/.buckconfig deleted file mode 100644 index 31d8382..0000000 --- a/example-simpleSshCommand/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-simpleSshCommand - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-simpleSshCommand/.buckversion b/example-simpleSshCommand/.buckversion deleted file mode 120000 index 6203e53..0000000 --- a/example-simpleSshCommand/.buckversion +++ /dev/null
@@ -1 +0,0 @@ -bucklets/buckversion \ No newline at end of file
diff --git a/example-simpleSshCommand/.gitignore b/example-simpleSshCommand/.gitignore index db1c934..16a6bd7 100644 --- a/example-simpleSshCommand/.gitignore +++ b/example-simpleSshCommand/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-simpleSshCommand/BUCK b/example-simpleSshCommand/BUCK deleted file mode 100644 index fd4375e..0000000 --- a/example-simpleSshCommand/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-simpleSshCommand', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-simpleSshCommand', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.simplesshcommand.SshModule', - 'Implementation-Title: Example Simple Ssh Command', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -# TODO(davido): is this needed? -# requires for bucklets/tools/eclipse/project.py to work -# not sure, if this does something useful in standalone context -java_library( - name = 'classpath', - deps = [':example-simpleSshCommand__plugin'], -)
diff --git a/example-simpleSshCommand/bucklets b/example-simpleSshCommand/bucklets deleted file mode 120000 index faeb10e..0000000 --- a/example-simpleSshCommand/bucklets +++ /dev/null
@@ -1 +0,0 @@ -../bucklets \ No newline at end of file
diff --git a/example-simpleSshCommand/lib/gerrit/BUCK b/example-simpleSshCommand/lib/gerrit/BUCK deleted file mode 100644 index b54f677..0000000 --- a/example-simpleSshCommand/lib/gerrit/BUCK +++ /dev/null
@@ -1,12 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-sshCommandAlias/.buckconfig b/example-sshCommandAlias/.buckconfig deleted file mode 100644 index 7f7d882..0000000 --- a/example-sshCommandAlias/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-sshCommandAlias - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-sshCommandAlias/.gitignore b/example-sshCommandAlias/.gitignore index db1c934..16a6bd7 100644 --- a/example-sshCommandAlias/.gitignore +++ b/example-sshCommandAlias/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-sshCommandAlias/BUCK b/example-sshCommandAlias/BUCK deleted file mode 100644 index 3cb5ddd..0000000 --- a/example-sshCommandAlias/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-sshCommandAlias', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-sshCommandAlias', - 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.sshcommandalias.SshModule', - 'Implementation-Title: Example Ssh Command Alias', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-sshCommandAlias__plugin'], -)
diff --git a/example-sshCommandAlias/lib/gerrit/BUCK b/example-sshCommandAlias/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-sshCommandAlias/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-topMenu/.buckconfig b/example-topMenu/.buckconfig deleted file mode 100644 index 3ab1645..0000000 --- a/example-topMenu/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-topMenu - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-topMenu/.gitignore b/example-topMenu/.gitignore index db1c934..16a6bd7 100644 --- a/example-topMenu/.gitignore +++ b/example-topMenu/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-topMenu/BUCK b/example-topMenu/BUCK deleted file mode 100644 index 3df62e4..0000000 --- a/example-topMenu/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-topMenu', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-topMenu', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.topmenu.Module', - 'Implementation-Title: Example TopMenu', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-topMenu__plugin'], -)
diff --git a/example-topMenu/lib/gerrit/BUCK b/example-topMenu/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-topMenu/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-usageDataLogger/.buckconfig b/example-usageDataLogger/.buckconfig deleted file mode 100644 index ee3180a..0000000 --- a/example-usageDataLogger/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-usageDataLogger - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-usageDataLogger/.gitignore b/example-usageDataLogger/.gitignore index d96b202..401eff3 100644 --- a/example-usageDataLogger/.gitignore +++ b/example-usageDataLogger/.gitignore
@@ -2,8 +2,5 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml /bazel-example-usageDataLogger
diff --git a/example-usageDataLogger/BUCK b/example-usageDataLogger/BUCK deleted file mode 100644 index 09ea366..0000000 --- a/example-usageDataLogger/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-usageDataLogger', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-usageDataLogger', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.usagedatalogger.Module', - 'Implementation-Title: Example Usage Data Logger', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-usageDataLogger__plugin'], -)
diff --git a/example-usageDataLogger/lib/gerrit/BUCK b/example-usageDataLogger/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-usageDataLogger/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerAssignee/.buckconfig b/example-validationListenerAssignee/.buckconfig deleted file mode 100644 index a597fac..0000000 --- a/example-validationListenerAssignee/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerAssignee - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerAssignee/.gitignore b/example-validationListenerAssignee/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerAssignee/.gitignore +++ b/example-validationListenerAssignee/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerAssignee/BUCK b/example-validationListenerAssignee/BUCK deleted file mode 100644 index 625090c..0000000 --- a/example-validationListenerAssignee/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerAssignee', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerAssignee', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenerassignee.Module', - 'Implementation-Title: Example Validation Listener Assignee', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerAssignee__plugin'], -)
diff --git a/example-validationListenerAssignee/lib/gerrit/BUCK b/example-validationListenerAssignee/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerAssignee/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerCommit/.buckconfig b/example-validationListenerCommit/.buckconfig deleted file mode 100644 index c3ce4c8..0000000 --- a/example-validationListenerCommit/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerCommit - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerCommit/.gitignore b/example-validationListenerCommit/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerCommit/.gitignore +++ b/example-validationListenerCommit/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerCommit/BUCK b/example-validationListenerCommit/BUCK deleted file mode 100644 index e61c849..0000000 --- a/example-validationListenerCommit/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerCommit', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerCommit', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenercommit.Module', - 'Implementation-Title: Example Validation Listener Commit', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerCommit__plugin'], -)
diff --git a/example-validationListenerCommit/lib/gerrit/BUCK b/example-validationListenerCommit/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerCommit/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerHashtag/.buckconfig b/example-validationListenerHashtag/.buckconfig deleted file mode 100644 index 4ef2069..0000000 --- a/example-validationListenerHashtag/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerHashtag - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerHashtag/.gitignore b/example-validationListenerHashtag/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerHashtag/.gitignore +++ b/example-validationListenerHashtag/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerHashtag/BUCK b/example-validationListenerHashtag/BUCK deleted file mode 100644 index 0c76c5a..0000000 --- a/example-validationListenerHashtag/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerHashtag', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerHashtag', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenerhashtag.Module', - 'Implementation-Title: Example Validation Listener Hashtag', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerHashtag__plugin'], -)
diff --git a/example-validationListenerHashtag/lib/gerrit/BUCK b/example-validationListenerHashtag/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerHashtag/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerMerge/.buckconfig b/example-validationListenerMerge/.buckconfig deleted file mode 100644 index 22eee3f..0000000 --- a/example-validationListenerMerge/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerMerge - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerMerge/.gitignore b/example-validationListenerMerge/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerMerge/.gitignore +++ b/example-validationListenerMerge/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerMerge/BUCK b/example-validationListenerMerge/BUCK deleted file mode 100644 index 49d3948..0000000 --- a/example-validationListenerMerge/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerMerge', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerMerge', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenermerge.Module', - 'Implementation-Title: Example Validation Listener Merge', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerMerge__plugin'], -)
diff --git a/example-validationListenerMerge/lib/gerrit/BUCK b/example-validationListenerMerge/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerMerge/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerNewProjectCreated/.buckconfig b/example-validationListenerNewProjectCreated/.buckconfig deleted file mode 100644 index 0df5541..0000000 --- a/example-validationListenerNewProjectCreated/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerNewProjectCreated - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerNewProjectCreated/.gitignore b/example-validationListenerNewProjectCreated/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerNewProjectCreated/.gitignore +++ b/example-validationListenerNewProjectCreated/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerNewProjectCreated/BUCK b/example-validationListenerNewProjectCreated/BUCK deleted file mode 100644 index 54a2277..0000000 --- a/example-validationListenerNewProjectCreated/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerNewProjectCreated', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerNewProjectCreated', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenernewprojectcreated.Module', - 'Implementation-Title: Example Validation Listener NewProjectCreated', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerNewProjectCreated__plugin'], -)
diff --git a/example-validationListenerNewProjectCreated/lib/gerrit/BUCK b/example-validationListenerNewProjectCreated/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerNewProjectCreated/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerRefOperation/.buckconfig b/example-validationListenerRefOperation/.buckconfig deleted file mode 100644 index 81a8e40..0000000 --- a/example-validationListenerRefOperation/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerRefOperation - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerRefOperation/.gitignore b/example-validationListenerRefOperation/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerRefOperation/.gitignore +++ b/example-validationListenerRefOperation/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerRefOperation/BUCK b/example-validationListenerRefOperation/BUCK deleted file mode 100644 index 35d515f..0000000 --- a/example-validationListenerRefOperation/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerRefOperation', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerRefOperation', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenerrefoperation.Module', - 'Implementation-Title: Example Validation Listener RefOperation', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerRefOperation__plugin'], -)
diff --git a/example-validationListenerRefOperation/lib/gerrit/BUCK b/example-validationListenerRefOperation/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerRefOperation/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-validationListenerUpload/.buckconfig b/example-validationListenerUpload/.buckconfig deleted file mode 100644 index 277e01e..0000000 --- a/example-validationListenerUpload/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-validationListenerUpload - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-validationListenerUpload/.gitignore b/example-validationListenerUpload/.gitignore index db1c934..16a6bd7 100644 --- a/example-validationListenerUpload/.gitignore +++ b/example-validationListenerUpload/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-validationListenerUpload/BUCK b/example-validationListenerUpload/BUCK deleted file mode 100644 index 07b9292..0000000 --- a/example-validationListenerUpload/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-validationListenerUpload', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-validationListenerUpload', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.validationlistenerupload.Module', - 'Implementation-Title: Example Validation Listener Upload', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-validationListenerUpload__plugin'], -)
diff --git a/example-validationListenerUpload/lib/gerrit/BUCK b/example-validationListenerUpload/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-validationListenerUpload/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-webLinkBranch/.buckconfig b/example-webLinkBranch/.buckconfig deleted file mode 100644 index 7bf4b66..0000000 --- a/example-webLinkBranch/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-webLinkBranch - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-webLinkBranch/.gitignore b/example-webLinkBranch/.gitignore index db1c934..16a6bd7 100644 --- a/example-webLinkBranch/.gitignore +++ b/example-webLinkBranch/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-webLinkBranch/BUCK b/example-webLinkBranch/BUCK deleted file mode 100644 index 740b343..0000000 --- a/example-webLinkBranch/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-webLinkBranch', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-webLinkBranch', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.weblinkbranch.Module', - 'Implementation-Title: Example WebLink Branch', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-webLinkBranch__plugin'], -)
diff --git a/example-webLinkBranch/lib/gerrit/BUCK b/example-webLinkBranch/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-webLinkBranch/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-webLinkFileHistory/.buckconfig b/example-webLinkFileHistory/.buckconfig deleted file mode 100644 index 0f0ffdd..0000000 --- a/example-webLinkFileHistory/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-webLinkFileHistory - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-webLinkFileHistory/.gitignore b/example-webLinkFileHistory/.gitignore index db1c934..16a6bd7 100644 --- a/example-webLinkFileHistory/.gitignore +++ b/example-webLinkFileHistory/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-webLinkFileHistory/BUCK b/example-webLinkFileHistory/BUCK deleted file mode 100644 index 569f36b..0000000 --- a/example-webLinkFileHistory/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-webLinkFileHistory', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-webLinkFileHistory', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.weblinkfilehistory.Module', - 'Implementation-Title: Example WebLink FileHistory', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-webLinkFileHistory__plugin'], -)
diff --git a/example-webLinkFileHistory/lib/gerrit/BUCK b/example-webLinkFileHistory/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-webLinkFileHistory/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-webLinkPatchSet/.buckconfig b/example-webLinkPatchSet/.buckconfig deleted file mode 100644 index 04886d6..0000000 --- a/example-webLinkPatchSet/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-webLinkPatchSet - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-webLinkPatchSet/.gitignore b/example-webLinkPatchSet/.gitignore index db1c934..16a6bd7 100644 --- a/example-webLinkPatchSet/.gitignore +++ b/example-webLinkPatchSet/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-webLinkPatchSet/BUCK b/example-webLinkPatchSet/BUCK deleted file mode 100644 index 796bd4b..0000000 --- a/example-webLinkPatchSet/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-webLinkPatchSet', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: example-webLinkPatchSet', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.weblinkpatchset.Module', - 'Implementation-Title: Example WebLink PatchSet', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-webLinkPatchSet__plugin'], -)
diff --git a/example-webLinkPatchSet/lib/gerrit/BUCK b/example-webLinkPatchSet/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-webLinkPatchSet/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-webLinkProject/.buckconfig b/example-webLinkProject/.buckconfig deleted file mode 100644 index 7fc83a2..0000000 --- a/example-webLinkProject/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-webLinkProject - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-webLinkProject/.gitignore b/example-webLinkProject/.gitignore index db1c934..16a6bd7 100644 --- a/example-webLinkProject/.gitignore +++ b/example-webLinkProject/.gitignore
@@ -2,7 +2,4 @@ /.classpath /.settings /.project -/.buckd -/buck-cache -/buck-out *.iml
diff --git a/example-webLinkProject/BUCK b/example-webLinkProject/BUCK deleted file mode 100644 index f517263..0000000 --- a/example-webLinkProject/BUCK +++ /dev/null
@@ -1,27 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -gerrit_plugin( - name = 'example-webLinkProject', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - manifest_entries = [ - 'Gerrit-PluginName: cookbook', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.weblinkproject.Module', - 'Implementation-Title: Cookbook plugin', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_test( - name = 'examples_tests', - srcs = glob(['src/test/java/**/*IT.java']), - labels = ['example-webLinkProject'], - deps = GERRIT_PLUGIN_API + GERRIT_TESTS + [ - ':example-webLinkProject__plugin', - ], -) - -java_library( - name = 'classpath', - deps = [':example-webLinkProject__plugin'], -)
diff --git a/example-webLinkProject/lib/gerrit/BUCK b/example-webLinkProject/lib/gerrit/BUCK deleted file mode 100644 index 8d5f0e9..0000000 --- a/example-webLinkProject/lib/gerrit/BUCK +++ /dev/null
@@ -1,20 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/.buckconfig b/example-wuiChangeScreenBelowChangeInfoBlock/.buckconfig deleted file mode 100644 index 4f087f7..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiChangeScreenBelowChangeInfoBlock - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/BUCK b/example-wuiChangeScreenBelowChangeInfoBlock/BUCK deleted file mode 100644 index 4abe2ac..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenbelowchangeinfoblock.HelloForm" - -gerrit_plugin( - name = 'example-wuiChangeScreenBelowChangeInfoBlock', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiChangeScreenBelowChangeInfoBlock', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuichangescreenbelowchangeinfoblock.Module', - 'Implementation-Title: Example Change Screen Extension Below Change Info Block', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiChangeScreenBelowChangeInfoBlock__plugin'], -)
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/lib/BUCK b/example-wuiChangeScreenBelowChangeInfoBlock/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/lib/gerrit/BUCK b/example-wuiChangeScreenBelowChangeInfoBlock/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/lib/gwt/BUCK b/example-wuiChangeScreenBelowChangeInfoBlock/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiChangeScreenBelowChangeInfoBlock/lib/ow2/BUCK b/example-wuiChangeScreenBelowChangeInfoBlock/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiChangeScreenBelowChangeInfoBlock/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiChangeScreenHeader/.buckconfig b/example-wuiChangeScreenHeader/.buckconfig deleted file mode 100644 index 9c47216..0000000 --- a/example-wuiChangeScreenHeader/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiChangeScreenHeader - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiChangeScreenHeader/BUCK b/example-wuiChangeScreenHeader/BUCK deleted file mode 100644 index 2b79c3c..0000000 --- a/example-wuiChangeScreenHeader/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenheader.HelloForm" - -gerrit_plugin( - name = 'example-wuiChangeScreenHeader', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiChangeScreenHeader', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuichangescreenheader.Module', - 'Implementation-Title: Example Change Screen Header Extension', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiChangeScreenHeader__plugin'], -)
diff --git a/example-wuiChangeScreenHeader/lib/BUCK b/example-wuiChangeScreenHeader/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiChangeScreenHeader/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiChangeScreenHeader/lib/gerrit/BUCK b/example-wuiChangeScreenHeader/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiChangeScreenHeader/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiChangeScreenHeader/lib/gwt/BUCK b/example-wuiChangeScreenHeader/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiChangeScreenHeader/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiChangeScreenHeader/lib/ow2/BUCK b/example-wuiChangeScreenHeader/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiChangeScreenHeader/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/.buckconfig b/example-wuiChangeScreenHeaderRightOfButtons/.buckconfig deleted file mode 100644 index 4130594..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiChangeScreenHeaderRightOfButtons - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/BUCK b/example-wuiChangeScreenHeaderRightOfButtons/BUCK deleted file mode 100644 index 030b54a..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenheaderrightofbuttons.HelloForm" - -gerrit_plugin( - name = 'example-wuiChangeScreenHeaderRightOfButtons', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiChangeScreenHeaderRightOfButtons', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuichangescreenheaderrightofbuttons.Module', - 'Implementation-Title: Example Change Screen Header Extension Right Of Buttons', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiChangeScreenHeaderRightOfButtons__plugin'], -)
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/lib/BUCK b/example-wuiChangeScreenHeaderRightOfButtons/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/lib/gerrit/BUCK b/example-wuiChangeScreenHeaderRightOfButtons/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/lib/gwt/BUCK b/example-wuiChangeScreenHeaderRightOfButtons/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiChangeScreenHeaderRightOfButtons/lib/ow2/BUCK b/example-wuiChangeScreenHeaderRightOfButtons/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiChangeScreenHeaderRightOfButtons/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/.buckconfig b/example-wuiChangeScreenHeaderRightOfPopDowns/.buckconfig deleted file mode 100644 index 08d2259..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiChangeScreenHeaderRightOfPopDowns - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/BUCK b/example-wuiChangeScreenHeaderRightOfPopDowns/BUCK deleted file mode 100644 index f3c0c00..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenheaderrightofpopdowns.HelloForm" - -gerrit_plugin( - name = 'example-wuiChangeScreenHeaderRightOfPopDowns', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiChangeScreenHeaderRightOfPopDowns', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuichangescreenheaderrightofpopdowns.Module', - 'Implementation-Title: Example Change Screen Header Extension Right Of Pop Downs', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiChangeScreenHeaderRightOfPopDowns__plugin'], -)
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/BUCK b/example-wuiChangeScreenHeaderRightOfPopDowns/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gerrit/BUCK b/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gwt/BUCK b/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/ow2/BUCK b/example-wuiChangeScreenHeaderRightOfPopDowns/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiChangeScreenHeaderRightOfPopDowns/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiPreferenceScreenBottom/.buckconfig b/example-wuiPreferenceScreenBottom/.buckconfig deleted file mode 100644 index e681d2b..0000000 --- a/example-wuiPreferenceScreenBottom/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiPreferenceScreenBottom - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiPreferenceScreenBottom/BUCK b/example-wuiPreferenceScreenBottom/BUCK deleted file mode 100644 index 9668611..0000000 --- a/example-wuiPreferenceScreenBottom/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuipreferencescreenbottom.HelloForm" - -gerrit_plugin( - name = 'example-wuiPreferenceScreenBottom', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiPreferenceScreenBottom', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuipreferencescreenbottom.Module', - 'Implementation-Title: Example Preference Screen Panel Bottom', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiPreferenceScreenBottom__plugin'], -)
diff --git a/example-wuiPreferenceScreenBottom/lib/BUCK b/example-wuiPreferenceScreenBottom/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiPreferenceScreenBottom/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiPreferenceScreenBottom/lib/gerrit/BUCK b/example-wuiPreferenceScreenBottom/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiPreferenceScreenBottom/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiPreferenceScreenBottom/lib/gwt/BUCK b/example-wuiPreferenceScreenBottom/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiPreferenceScreenBottom/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiPreferenceScreenBottom/lib/ow2/BUCK b/example-wuiPreferenceScreenBottom/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiPreferenceScreenBottom/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiProfileExtensionBottom/.buckconfig b/example-wuiProfileExtensionBottom/.buckconfig deleted file mode 100644 index 53b220b..0000000 --- a/example-wuiProfileExtensionBottom/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiProfileExtensionBottom - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiProfileExtensionBottom/BUCK b/example-wuiProfileExtensionBottom/BUCK deleted file mode 100644 index bd262fb..0000000 --- a/example-wuiProfileExtensionBottom/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuiprofileextensionbottom.HelloForm" - -gerrit_plugin( - name = 'example-wuiProfileExtensionBottom', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiProfileExtensionBottom', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuiprofileextensionbottom.Module', - 'Implementation-Title: Example Profile Extension Bottom', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiProfileExtensionBottom__plugin'], -)
diff --git a/example-wuiProfileExtensionBottom/lib/BUCK b/example-wuiProfileExtensionBottom/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiProfileExtensionBottom/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiProfileExtensionBottom/lib/gerrit/BUCK b/example-wuiProfileExtensionBottom/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiProfileExtensionBottom/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiProfileExtensionBottom/lib/gwt/BUCK b/example-wuiProfileExtensionBottom/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiProfileExtensionBottom/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiProfileExtensionBottom/lib/ow2/BUCK b/example-wuiProfileExtensionBottom/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiProfileExtensionBottom/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)
diff --git a/example-wuiSettingsScreen/.buckconfig b/example-wuiSettingsScreen/.buckconfig deleted file mode 100644 index df6df7e..0000000 --- a/example-wuiSettingsScreen/.buckconfig +++ /dev/null
@@ -1,15 +0,0 @@ -[alias] - plugin = //:example-wuiSettingsScreen - -[java] - src_roots = java, resources - source_level = 8 - target_level = 8 - -[project] - ignore = .git - -[cache] - mode = dir - dir = buck-out/cache -
diff --git a/example-wuiSettingsScreen/BUCK b/example-wuiSettingsScreen/BUCK deleted file mode 100644 index 92e74ad..0000000 --- a/example-wuiSettingsScreen/BUCK +++ /dev/null
@@ -1,21 +0,0 @@ -include_defs('//bucklets/gerrit_plugin.bucklet') - -MODULE = "com.googlesource.gerrit.plugins.examples.wuisettingsscreen.HelloForm" - -gerrit_plugin( - name = 'example-wuiSettingsScreen', - srcs = glob(['src/main/java/**/*.java']), - resources = glob(['src/main/**/*']), - gwt_module = MODULE, - manifest_entries = [ - 'Gerrit-PluginName: example-wuiSettingsScreen', - 'Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuisettingsscreen.Module', - 'Implementation-Title: Example Settings Screen Extension', - 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', - ], -) - -java_library( - name = 'classpath', - deps = [':example-wuiSettingsScreen__plugin'], -)
diff --git a/example-wuiSettingsScreen/lib/BUCK b/example-wuiSettingsScreen/lib/BUCK deleted file mode 100644 index d333cba..0000000 --- a/example-wuiSettingsScreen/lib/BUCK +++ /dev/null
@@ -1,18 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -maven_jar( - name = 'junit', - id = 'junit:junit:4.11', - sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', - license = 'DO_NOT_DISTRIBUTE', -) - -maven_jar( - name = 'truth', - id = 'com.google.truth:truth:0.27', - sha1 = 'bd17774d2dc0fffa884d42c07d2537e86c67acd6', - license = 'DO_NOT_DISTRIBUTE', - exported_deps = [ - ':junit', - ], -)
diff --git a/example-wuiSettingsScreen/lib/gerrit/BUCK b/example-wuiSettingsScreen/lib/gerrit/BUCK deleted file mode 100644 index 802c1b7..0000000 --- a/example-wuiSettingsScreen/lib/gerrit/BUCK +++ /dev/null
@@ -1,28 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VER = '2.14-SNAPSHOT' -REPO = MAVEN_LOCAL - -maven_jar( - name = 'acceptance-framework', - id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'plugin-api', - id = 'com.google.gerrit:gerrit-plugin-api:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -) - -maven_jar( - name = 'gwtui-api', - id = 'com.google.gerrit:gerrit-plugin-gwtui:' + VER, - license = 'Apache2.0', - attach_source = False, - repository = REPO, -)
diff --git a/example-wuiSettingsScreen/lib/gwt/BUCK b/example-wuiSettingsScreen/lib/gwt/BUCK deleted file mode 100644 index 26e55d3..0000000 --- a/example-wuiSettingsScreen/lib/gwt/BUCK +++ /dev/null
@@ -1,73 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '2.8.0' - -maven_jar( - name = 'user', - id = 'com.google.gwt:gwt-user:' + VERSION, - sha1 = '518579870499e15531f454f35dca0772d7fa31f7', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'dev', - id = 'com.google.gwt:gwt-dev:' + VERSION, - sha1 = 'f160a61272c5ebe805cd2d3d3256ed3ecf14893f', - license = 'Apache2.0', - attach_source = False, -) - -maven_jar( - name = 'javax-validation', - id = 'javax.validation:validation-api:1.0.0.GA', - bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e', - src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'jsinterop-annotations', - id = 'com.google.jsinterop:jsinterop-annotations:1.0.0', - bin_sha1 = '23c3a3c060ffe4817e67673cc8294e154b0a4a95', - src_sha1 = '5d7c478efbfccc191430d7c118d7bd2635e43750', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'ant', - id = 'ant:ant:1.6.5', - bin_sha1 = '7d18faf23df1a5c3a43613952e0e8a182664564b', - src_sha1 = '9e0a847494563f35f9b02846a1c1eb4aa2ee5a9a', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'colt', - id = 'colt:colt:1.2.0', - attach_source = False, - bin_sha1 = '0abc984f3adc760684d49e0f11ddf167ba516d4f', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'tapestry', - id = 'tapestry:tapestry:4.0.2', - attach_source = False, - bin_sha1 = 'e855a807425d522e958cbce8697f21e9d679b1f7', - license = 'Apache2.0', - visibility = ['PUBLIC'], -) - -maven_jar( - name = 'w3c-css-sac', - id = 'org.w3c.css:sac:1.3', - attach_source = False, - bin_sha1 = 'cdb2dcb4e22b83d6b32b93095f644c3462739e82', - license = 'DO_NOT_DISTRIBUTE', - visibility = ['PUBLIC'], -)
diff --git a/example-wuiSettingsScreen/lib/ow2/BUCK b/example-wuiSettingsScreen/lib/ow2/BUCK deleted file mode 100644 index 543bc09..0000000 --- a/example-wuiSettingsScreen/lib/ow2/BUCK +++ /dev/null
@@ -1,39 +0,0 @@ -include_defs('//bucklets/maven_jar.bucklet') - -VERSION = '5.1' - -maven_jar( - name = 'ow2-asm', - id = 'org.ow2.asm:asm:' + VERSION, - sha1 = '5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-analysis', - id = 'org.ow2.asm:asm-analysis:' + VERSION, - sha1 = '6d1bf8989fc7901f868bee3863c44f21aa63d110', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-commons', - id = 'org.ow2.asm:asm-commons:' + VERSION, - sha1 = '25d8a575034dd9cfcb375a39b5334f0ba9c8474e', - deps = [':ow2-asm-tree'], - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-tree', - id = 'org.ow2.asm:asm-tree:' + VERSION, - sha1 = '87b38c12a0ea645791ead9d3e74ae5268d1d6c34', - license = 'ow2', -) - -maven_jar( - name = 'ow2-asm-util', - id = 'org.ow2.asm:asm-util:' + VERSION, - sha1 = 'b60e33a6bd0d71831e0c249816d01e6c1dd90a47', - license = 'ow2', -)