Add Jenkins plugin

It doesn't do anything other than render "Builds go here" in a DOM but
the scaffold is there to start making API calls. This plugin borrows
heavily from the CircleCI plugin.
This commit is contained in:
David Tuite
2020-06-21 18:31:25 +01:00
committed by Fredrik Adelöw
parent 2577c730e7
commit f080c3256f
19 changed files with 422 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { createDevApp } from '@backstage/dev-utils';
import { plugin } from '../src/plugin';
createDevApp().registerPlugin(plugin).render();