diff --git a/plugins/catalog/package.json b/plugins/catalog/package.json
index dca8b6adee..e1b52795d3 100644
--- a/plugins/catalog/package.json
+++ b/plugins/catalog/package.json
@@ -23,10 +23,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.1.1-alpha.21",
"@backstage/core": "^0.1.1-alpha.21",
- "@backstage/plugin-github-actions": "^0.1.1-alpha.21",
- "@backstage/plugin-jenkins": "^0.1.1-alpha.21",
"@backstage/plugin-scaffolder": "^0.1.1-alpha.21",
- "@backstage/plugin-sentry": "^0.1.1-alpha.21",
"@backstage/plugin-techdocs": "^0.1.1-alpha.21",
"@backstage/theme": "^0.1.1-alpha.21",
"@material-ui/core": "^4.11.0",
diff --git a/plugins/catalog/src/components/EntityPageCi/EntityPageCi.tsx b/plugins/catalog/src/components/EntityPageCi/EntityPageCi.tsx
deleted file mode 100644
index 0974e6bb83..0000000000
--- a/plugins/catalog/src/components/EntityPageCi/EntityPageCi.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * 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.
- */
-
-// TODO(shmidt-i): move to the app
-import { Entity } from '@backstage/catalog-model';
-import { Content } from '@backstage/core';
-import {
- LatestWorkflowsForBranchCard,
- GITHUB_ACTIONS_ANNOTATION,
-} from '@backstage/plugin-github-actions';
-import { Grid } from '@material-ui/core';
-import React, { FC } from 'react';
-
-export const EntityPageCi: FC<{ entity: Entity }> = ({ entity }) => {
- return (
-
-
- {entity.metadata?.annotations?.[GITHUB_ACTIONS_ANNOTATION] && (
-
-
-
- )}
-
-
- );
-};
diff --git a/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx b/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx
deleted file mode 100644
index c43e83edaa..0000000000
--- a/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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.
- */
-
-// TODO(shmidt-i): move to the app
-import { Entity } from '@backstage/catalog-model';
-import { Content } from '@backstage/core';
-import {
- LatestWorkflowRunCard,
- GITHUB_ACTIONS_ANNOTATION,
-} from '@backstage/plugin-github-actions';
-import {
- JenkinsBuildsWidget,
- JenkinsLastBuildWidget,
-} from '@backstage/plugin-jenkins';
-import { Grid } from '@material-ui/core';
-import React, { FC } from 'react';
-import { AboutCard } from '../AboutCard';
-
-export const EntityPageOverview: FC<{ entity: Entity }> = ({ entity }) => {
- return (
-
-
-
-
-
- {entity.metadata?.annotations?.[
- 'backstage.io/jenkins-github-folder'
- ] && (
-
-
-
- )}
- {entity.metadata?.annotations?.[
- 'backstage.io/jenkins-github-folder'
- ] && (
-
-
-
- )}
- {entity.metadata?.annotations?.[GITHUB_ACTIONS_ANNOTATION] && (
-
-
-
- )}
-
-
- );
-};