Skip to content

Commit 0a5b933

Browse files
committed
Updating name and package
1 parent c67d2b5 commit 0a5b933

10 files changed

Lines changed: 23 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
22

3-
# idea-java-format Changelog
3+
# emergent-java-format Changelog
44

55
## [Unreleased]
66
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# idea-java-format
1+
# emergent-java-format
22

3-
![Build](https://github.com/emergentdotorg/idea-java-format/workflows/Build/badge.svg)
3+
![Build](https://github.com/emergentdotorg/emergent-java-format/workflows/Build/badge.svg)
44
[![Version](https://img.shields.io/jetbrains/plugin/v/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
55
[![Downloads](https://img.shields.io/jetbrains/plugin/d/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
66

@@ -29,7 +29,7 @@ To keep everything working, do not remove `<!-- ... -->` sections.
2929

3030
- Using the IDE built-in plugin system:
3131

32-
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "idea-java-format"</kbd> >
32+
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "emergent-java-format"</kbd> >
3333
<kbd>Install</kbd>
3434

3535
- Using JetBrains Marketplace:
@@ -41,7 +41,7 @@ To keep everything working, do not remove `<!-- ... -->` sections.
4141

4242
- Manually:
4343

44-
Download the [latest release](https://github.com/emergentdotorg/idea-java-format/releases/latest) and install it manually using
44+
Download the [latest release](https://github.com/emergentdotorg/emergent-java-format/releases/latest) and install it manually using
4545
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
4646

4747

gradle.properties

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

3-
pluginGroup = com.github.pwoodworth.ideajavaformat
4-
pluginName = idea-java-format
5-
pluginRepositoryUrl = https://github.com/emergentdotorg/idea-java-format
3+
pluginGroup = org.emergent.idea.ideajavaformat
4+
pluginName = emergent-java-format
5+
pluginRepositoryUrl = https://github.com/emergentdotorg/emergent-java-format
66
# SemVer format -> https://semver.org
77
pluginVersion = 0.0.1
88

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ plugins {
22
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
33
}
44

5-
rootProject.name = "idea-java-format"
5+
rootProject.name = "emergent-java-format"

src/main/kotlin/com/github/pwoodworth/ideajavaformat/MyBundle.kt renamed to src/main/kotlin/org/emergent/idea/format/MyBundle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.pwoodworth.ideajavaformat
1+
package org.emergent.idea.format
22

33
import com.intellij.DynamicBundle
44
import org.jetbrains.annotations.NonNls

src/main/kotlin/com/github/pwoodworth/ideajavaformat/services/MyProjectService.kt renamed to src/main/kotlin/org/emergent/idea/format/services/MyProjectService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package com.github.pwoodworth.ideajavaformat.services
1+
package org.emergent.idea.format.services
22

33
import com.intellij.openapi.components.Service
44
import com.intellij.openapi.diagnostic.thisLogger
55
import com.intellij.openapi.project.Project
6-
import com.github.pwoodworth.ideajavaformat.MyBundle
6+
import org.emergent.idea.format.MyBundle
77

88
@Service(Service.Level.PROJECT)
99
class MyProjectService(project: Project) {

src/main/kotlin/com/github/pwoodworth/ideajavaformat/startup/MyProjectActivity.kt renamed to src/main/kotlin/org/emergent/idea/format/startup/MyProjectActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.pwoodworth.ideajavaformat.startup
1+
package org.emergent.idea.format.startup
22

33
import com.intellij.openapi.diagnostic.thisLogger
44
import com.intellij.openapi.project.Project

src/main/kotlin/com/github/pwoodworth/ideajavaformat/toolWindow/MyToolWindowFactory.kt renamed to src/main/kotlin/org/emergent/idea/format/toolWindow/MyToolWindowFactory.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.pwoodworth.ideajavaformat.toolWindow
1+
package org.emergent.idea.format.toolWindow
22

33
import com.intellij.openapi.components.service
44
import com.intellij.openapi.diagnostic.thisLogger
@@ -8,8 +8,8 @@ import com.intellij.openapi.wm.ToolWindowFactory
88
import com.intellij.ui.components.JBLabel
99
import com.intellij.ui.components.JBPanel
1010
import com.intellij.ui.content.ContentFactory
11-
import com.github.pwoodworth.ideajavaformat.MyBundle
12-
import com.github.pwoodworth.ideajavaformat.services.MyProjectService
11+
import org.emergent.idea.format.MyBundle
12+
import org.emergent.idea.format.services.MyProjectService
1313
import javax.swing.JButton
1414

1515

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
22
<idea-plugin>
3-
<id>com.github.pwoodworth.ideajavaformat</id>
4-
<name>idea-java-format</name>
5-
<vendor>pwoodworth</vendor>
3+
<id>org.emergent.java.format</id>
4+
<name>emergent-java-format</name>
5+
<vendor>Emergent.org</vendor>
66

77
<depends>com.intellij.modules.platform</depends>
88

99
<resource-bundle>messages.MyBundle</resource-bundle>
1010

1111
<extensions defaultExtensionNs="com.intellij">
12-
<toolWindow factoryClass="com.github.pwoodworth.ideajavaformat.toolWindow.MyToolWindowFactory" id="MyToolWindow"/>
13-
<postStartupActivity implementation="com.github.pwoodworth.ideajavaformat.startup.MyProjectActivity" />
12+
<toolWindow factoryClass="org.emergent.idea.format.toolWindow.MyToolWindowFactory" id="MyToolWindow"/>
13+
<postStartupActivity implementation="org.emergent.idea.format.startup.MyProjectActivity" />
1414
</extensions>
1515
</idea-plugin>

src/test/kotlin/com/github/pwoodworth/ideajavaformat/MyPluginTest.kt renamed to src/test/kotlin/org/emergent/idea/format/MyPluginTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.github.pwoodworth.ideajavaformat
1+
package org.emergent.idea.format
22

33
import com.intellij.ide.highlighter.XmlFileType
44
import com.intellij.openapi.components.service
55
import com.intellij.psi.xml.XmlFile
66
import com.intellij.testFramework.TestDataPath
77
import com.intellij.testFramework.fixtures.BasePlatformTestCase
88
import com.intellij.util.PsiErrorElementUtil
9-
import com.github.pwoodworth.ideajavaformat.services.MyProjectService
9+
import org.emergent.idea.format.services.MyProjectService
1010

1111
@TestDataPath("\$CONTENT_ROOT/src/test/testData")
1212
class MyPluginTest : BasePlatformTestCase() {

0 commit comments

Comments
 (0)