Skip to content

Commit e802bb9

Browse files
committed
Update plugin ID
Signed-off-by: Artem Zatsarynnyi <azatsary@redhat.com>
1 parent 4c82356 commit e802bb9

29 files changed

+62
-62
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# OpenShift Dev Spaces Gateway Plugin
22

33
[![Build](https://github.com/redhat-developer/devspaces-gateway-plugin/workflows/Build/badge.svg)](https://github.com/redhat-developer/devspaces-gateway-plugin/actions/workflows/build.yml)
4-
[![Version](https://img.shields.io/jetbrains/plugin/v/com.github.devspaces.gateway.svg)](https://plugins.jetbrains.com/plugin/com.github.devspaces.gateway)
5-
[![Downloads](https://img.shields.io/jetbrains/plugin/d/com.github.devspaces.gateway.svg)](https://plugins.jetbrains.com/plugin/com.github.devspaces.gateway)
4+
[![Version](https://img.shields.io/jetbrains/plugin/v/com.redhat.devtools.gateway.svg)](https://plugins.jetbrains.com/plugin/com.redhat.devtools.gateway)
5+
[![Downloads](https://img.shields.io/jetbrains/plugin/d/com.redhat.devtools.gateway.svg)](https://plugins.jetbrains.com/plugin/com.redhat.devtools.gateway)
66

77
<!-- Plugin description -->
88
<!-- This specific section is a source for the [plugin.xml](/src/main/resources/META-INF/plugin.xml) file which will be extracted by the [Gradle](/build.gradle.kts) during the build process. -->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
22

3-
pluginGroup = com.github.devspaces.gateway
3+
pluginGroup = com.redhat.devtools.gateway
44
pluginName = devspaces-gateway-plugin
55
pluginRepositoryUrl = https://github.com/redhat-developer/devspaces-gateway-plugin
66
# SemVer format -> https://semver.org

src/main/kotlin/com/github/devspaces/gateway/DevSpacesBundle.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesBundle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

1414
import com.intellij.DynamicBundle
1515
import org.jetbrains.annotations.NonNls

src/main/kotlin/com/github/devspaces/gateway/DevSpacesConnection.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesConnection.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

14-
import com.github.devspaces.gateway.openshift.DevWorkspaces
15-
import com.github.devspaces.gateway.openshift.Pods
16-
import com.github.devspaces.gateway.server.RemoteServer
14+
import com.redhat.devtools.gateway.openshift.DevWorkspaces
15+
import com.redhat.devtools.gateway.openshift.Pods
16+
import com.redhat.devtools.gateway.server.RemoteServer
1717
import com.jetbrains.gateway.thinClientLink.LinkedClientManager
1818
import com.jetbrains.gateway.thinClientLink.ThinClientHandle
1919
import com.jetbrains.rd.util.lifetime.Lifetime

src/main/kotlin/com/github/devspaces/gateway/DevSpacesConnectionHandle.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesConnectionHandle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

1414
import com.jetbrains.gateway.api.CustomConnectionFrameComponentProvider
1515
import com.jetbrains.gateway.api.CustomConnectionFrameContext

src/main/kotlin/com/github/devspaces/gateway/DevSpacesConnectionProvider.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesConnectionProvider.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

14-
import com.github.devspaces.gateway.openshift.DevWorkspaces
15-
import com.github.devspaces.gateway.openshift.OpenShiftClientFactory
14+
import com.redhat.devtools.gateway.openshift.DevWorkspaces
15+
import com.redhat.devtools.gateway.openshift.OpenShiftClientFactory
1616
import com.intellij.openapi.diagnostic.thisLogger
1717
import com.intellij.ui.dsl.builder.Align.Companion.CENTER
1818
import com.intellij.ui.dsl.builder.panel

src/main/kotlin/com/github/devspaces/gateway/DevSpacesConnector.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesConnector.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

14-
import com.github.devspaces.gateway.help.DEVSPACES_DOC_LINK
15-
import com.github.devspaces.gateway.view.DevSpacesMainView
14+
import com.redhat.devtools.gateway.help.DEVSPACES_DOC_LINK
15+
import com.redhat.devtools.gateway.view.DevSpacesMainView
1616
import com.jetbrains.gateway.api.GatewayConnector
1717
import com.jetbrains.gateway.api.GatewayConnectorDocumentationPage
1818
import com.jetbrains.gateway.api.GatewayConnectorView

src/main/kotlin/com/github/devspaces/gateway/DevSpacesContext.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesContext.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

14-
import com.github.devspaces.gateway.openshift.DevWorkspace
14+
import com.redhat.devtools.gateway.openshift.DevWorkspace
1515
import io.kubernetes.client.openapi.ApiClient
1616

1717
class DevSpacesContext {

src/main/kotlin/com/github/devspaces/gateway/DevSpacesIcons.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/DevSpacesIcons.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway
12+
package com.redhat.devtools.gateway
1313

1414
import com.intellij.openapi.util.IconLoader
1515

src/main/kotlin/com/github/devspaces/gateway/help/DevSpacesWebHelp.kt renamed to src/main/kotlin/com/redhat/devtools/gateway/help/DevSpacesWebHelp.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Contributors:
1010
* Red Hat, Inc. - initial API and implementation
1111
*/
12-
package com.github.devspaces.gateway.help
12+
package com.redhat.devtools.gateway.help
1313

1414
const val DEVSPACES_DOC_LINK = "https://access.redhat.com/documentation/en-us/red_hat_openshift_dev_spaces"
1515

0 commit comments

Comments
 (0)