Skip to content

Commit

Permalink
Update plugin ID
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Zatsarynnyi <[email protected]>
  • Loading branch information
azatsarynnyy committed Apr 22, 2024
1 parent 4c82356 commit e802bb9
Show file tree
Hide file tree
Showing 29 changed files with 62 additions and 62 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OpenShift Dev Spaces Gateway Plugin

[![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)
[![Version](https://img.shields.io/jetbrains/plugin/v/com.github.devspaces.gateway.svg)](https://plugins.jetbrains.com/plugin/com.github.devspaces.gateway)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/com.github.devspaces.gateway.svg)](https://plugins.jetbrains.com/plugin/com.github.devspaces.gateway)
[![Version](https://img.shields.io/jetbrains/plugin/v/com.redhat.devtools.gateway.svg)](https://plugins.jetbrains.com/plugin/com.redhat.devtools.gateway)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/com.redhat.devtools.gateway.svg)](https://plugins.jetbrains.com/plugin/com.redhat.devtools.gateway)

<!-- Plugin description -->
<!-- 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. -->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html

pluginGroup = com.github.devspaces.gateway
pluginGroup = com.redhat.devtools.gateway
pluginName = devspaces-gateway-plugin
pluginRepositoryUrl = https://github.com/redhat-developer/devspaces-gateway-plugin
# SemVer format -> https://semver.org
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.intellij.DynamicBundle
import org.jetbrains.annotations.NonNls
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.github.devspaces.gateway.openshift.DevWorkspaces
import com.github.devspaces.gateway.openshift.Pods
import com.github.devspaces.gateway.server.RemoteServer
import com.redhat.devtools.gateway.openshift.DevWorkspaces
import com.redhat.devtools.gateway.openshift.Pods
import com.redhat.devtools.gateway.server.RemoteServer
import com.jetbrains.gateway.thinClientLink.LinkedClientManager
import com.jetbrains.gateway.thinClientLink.ThinClientHandle
import com.jetbrains.rd.util.lifetime.Lifetime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.jetbrains.gateway.api.CustomConnectionFrameComponentProvider
import com.jetbrains.gateway.api.CustomConnectionFrameContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.github.devspaces.gateway.openshift.DevWorkspaces
import com.github.devspaces.gateway.openshift.OpenShiftClientFactory
import com.redhat.devtools.gateway.openshift.DevWorkspaces
import com.redhat.devtools.gateway.openshift.OpenShiftClientFactory
import com.intellij.openapi.diagnostic.thisLogger
import com.intellij.ui.dsl.builder.Align.Companion.CENTER
import com.intellij.ui.dsl.builder.panel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.github.devspaces.gateway.help.DEVSPACES_DOC_LINK
import com.github.devspaces.gateway.view.DevSpacesMainView
import com.redhat.devtools.gateway.help.DEVSPACES_DOC_LINK
import com.redhat.devtools.gateway.view.DevSpacesMainView
import com.jetbrains.gateway.api.GatewayConnector
import com.jetbrains.gateway.api.GatewayConnectorDocumentationPage
import com.jetbrains.gateway.api.GatewayConnectorView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.github.devspaces.gateway.openshift.DevWorkspace
import com.redhat.devtools.gateway.openshift.DevWorkspace
import io.kubernetes.client.openapi.ApiClient

class DevSpacesContext {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

import com.intellij.openapi.util.IconLoader

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.help
package com.redhat.devtools.gateway.help

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

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

import java.util.Collections.emptyMap

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

import com.google.gson.reflect.TypeToken
import io.kubernetes.client.openapi.ApiClient
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

import io.kubernetes.client.openapi.ApiClient
import io.kubernetes.client.util.ClientBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

import io.ktor.utils.io.*
import io.ktor.utils.io.jvm.nio.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

import io.kubernetes.client.openapi.ApiClient
import io.kubernetes.client.openapi.ApiException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.openshift
package com.redhat.devtools.gateway.openshift

object Utils {
@JvmStatic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Red Hat, Inc. - initial API and implementation
*/

package com.github.devspaces.gateway.server
package com.redhat.devtools.gateway.server

data class ProjectInfo(
val projectName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Red Hat, Inc. - initial API and implementation
*/

package com.github.devspaces.gateway.server
package com.redhat.devtools.gateway.server

data class ProjectStatus(
val joinLink: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
* Red Hat, Inc. - initial API and implementation
*/

package com.github.devspaces.gateway.server
package com.redhat.devtools.gateway.server

import com.github.devspaces.gateway.DevSpacesContext
import com.github.devspaces.gateway.openshift.Pods
import com.redhat.devtools.gateway.DevSpacesContext
import com.redhat.devtools.gateway.openshift.Pods
import com.google.common.base.Strings
import com.google.gson.Gson
import com.intellij.openapi.diagnostic.thisLogger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.settings
package com.redhat.devtools.gateway.settings

import com.intellij.openapi.components.*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view
package com.redhat.devtools.gateway.view

import com.github.devspaces.gateway.DevSpacesContext
import com.redhat.devtools.gateway.DevSpacesContext
import com.intellij.ui.components.panels.Wrapper
import com.intellij.util.ui.JBUI
import com.jetbrains.gateway.api.GatewayConnectorView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view
package com.redhat.devtools.gateway.view

import com.github.devspaces.gateway.DevSpacesContext
import com.github.devspaces.gateway.view.steps.DevSpacesRemoteServerConnectionStepView
import com.github.devspaces.gateway.view.steps.DevSpacesOpenShiftConnectionStepView
import com.github.devspaces.gateway.view.steps.DevSpacesWizardStep
import com.redhat.devtools.gateway.DevSpacesContext
import com.redhat.devtools.gateway.view.steps.DevSpacesRemoteServerConnectionStepView
import com.redhat.devtools.gateway.view.steps.DevSpacesOpenShiftConnectionStepView
import com.redhat.devtools.gateway.view.steps.DevSpacesWizardStep
import com.intellij.openapi.Disposable
import com.intellij.openapi.wm.impl.welcomeScreen.WelcomeScreenUIManager
import com.intellij.ui.dsl.builder.AlignX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view
package com.redhat.devtools.gateway.view

import com.intellij.openapi.ui.DialogWrapper
import com.intellij.ui.components.JBLabel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view
package com.redhat.devtools.gateway.view

import com.intellij.openapi.ui.DialogWrapper
import com.intellij.ui.dsl.builder.Align
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view.steps
package com.redhat.devtools.gateway.view.steps

import com.github.devspaces.gateway.DevSpacesBundle
import com.github.devspaces.gateway.DevSpacesContext
import com.github.devspaces.gateway.openshift.OpenShiftClientFactory
import com.github.devspaces.gateway.openshift.Projects
import com.github.devspaces.gateway.settings.DevSpacesSettings
import com.github.devspaces.gateway.view.InformationDialog
import com.redhat.devtools.gateway.DevSpacesBundle
import com.redhat.devtools.gateway.DevSpacesContext
import com.redhat.devtools.gateway.openshift.OpenShiftClientFactory
import com.redhat.devtools.gateway.openshift.Projects
import com.redhat.devtools.gateway.settings.DevSpacesSettings
import com.redhat.devtools.gateway.view.InformationDialog
import com.google.gson.Gson
import com.intellij.openapi.components.service
import com.intellij.openapi.wm.impl.welcomeScreen.WelcomeScreenUIManager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view.steps
package com.redhat.devtools.gateway.view.steps

import com.github.devspaces.gateway.DevSpacesBundle
import com.github.devspaces.gateway.DevSpacesConnection
import com.github.devspaces.gateway.DevSpacesContext
import com.github.devspaces.gateway.openshift.DevWorkspace
import com.github.devspaces.gateway.openshift.DevWorkspaces
import com.github.devspaces.gateway.openshift.Projects
import com.github.devspaces.gateway.openshift.Utils
import com.github.devspaces.gateway.view.InformationDialog
import com.github.devspaces.gateway.view.LoaderDialog
import com.redhat.devtools.gateway.DevSpacesBundle
import com.redhat.devtools.gateway.DevSpacesConnection
import com.redhat.devtools.gateway.DevSpacesContext
import com.redhat.devtools.gateway.openshift.DevWorkspace
import com.redhat.devtools.gateway.openshift.DevWorkspaces
import com.redhat.devtools.gateway.openshift.Projects
import com.redhat.devtools.gateway.openshift.Utils
import com.redhat.devtools.gateway.view.InformationDialog
import com.redhat.devtools.gateway.view.LoaderDialog
import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.diagnostic.thisLogger
import com.intellij.openapi.wm.impl.welcomeScreen.WelcomeScreenUIManager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway.view.steps
package com.redhat.devtools.gateway.view.steps

import com.intellij.openapi.ui.DialogPanel

Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.devspaces.gateway</id>
<id>com.redhat.devtools.gateway</id>
<name>OpenShift Dev Spaces</name>
<vendor email="[email protected]" url="https://www.redhat.com">Red-Hat</vendor>

Expand All @@ -10,7 +10,7 @@
<resource-bundle>messages.DevSpacesBundle</resource-bundle>

<extensions defaultExtensionNs="com.jetbrains">
<gatewayConnector implementation="com.github.devspaces.gateway.DevSpacesConnector"/>
<gatewayConnectionProvider implementation="com.github.devspaces.gateway.DevSpacesConnectionProvider"/>
<gatewayConnector implementation="com.redhat.devtools.gateway.DevSpacesConnector"/>
<gatewayConnectionProvider implementation="com.redhat.devtools.gateway.DevSpacesConnectionProvider"/>
</extensions>
</idea-plugin>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package com.github.devspaces.gateway
package com.redhat.devtools.gateway

//import com.intellij.ide.highlighter.XmlFileType
//import com.intellij.psi.xml.XmlFile
Expand Down

0 comments on commit e802bb9

Please sign in to comment.