diff options
author | Pauline <git@ethanlibs.co> | 2024-04-27 19:59:05 -0400 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-04-27 19:59:05 -0400 |
commit | d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8 (patch) | |
tree | f01fd22131c5557c6d50ea2dcedd6206c64d7e0b /src/main/resources/META-INF/plugin.xml | |
parent | cae1da9997d81af994f58ede97049fef4f123f8b (diff) | |
download | IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.tar.gz IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.tar.bz2 IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.zip |
♻️ refactor(plugin): refactor cc -> org and update deps, intellij
Diffstat (limited to 'src/main/resources/META-INF/plugin.xml')
-rw-r--r-- | src/main/resources/META-INF/plugin.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 9267a13..d20684e 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,10 +1,10 @@ <idea-plugin> - <id>cc.polyfrost.sorbet.intelliprocessor</id> + <id>org.polyfrost.sorbet.intelliprocessor</id> <name>IntelliProcessor</name> - <vendor url="https://polyfrost.cc">Polyfrost</vendor> + <vendor url="https://polyfrost.org">Polyfrost</vendor> <description><![CDATA[ - An IntelliJ plugin to add support for + An IntelliJ IDEA plugin to add support for <a href="https://github.com/ReplayMod/preprocessor">preprocessor syntax</a> ]]></description> @@ -13,25 +13,25 @@ <extensions defaultExtensionNs="com.intellij"> <highlightVisitor - implementation="cc.polyfrost.sorbet.intelliprocessor.PreprocessorHighlight" + implementation="org.polyfrost.sorbet.intelliprocessor.PreprocessorHighlight" /> <enterHandlerDelegate - implementation="cc.polyfrost.sorbet.intelliprocessor.PreprocessorExtend" + implementation="org.polyfrost.sorbet.intelliprocessor.PreprocessorExtend" /> <lang.importOptimizer language="JAVA" - implementationClass="cc.polyfrost.sorbet.intelliprocessor.PreprocessorImport" + implementationClass="org.polyfrost.sorbet.intelliprocessor.PreprocessorImport" order="first" /> <lang.foldingBuilder language="JAVA" - implementationClass="cc.polyfrost.sorbet.intelliprocessor.PreprocessorFolding" + implementationClass="org.polyfrost.sorbet.intelliprocessor.PreprocessorFolding" order="first" /> <lang.foldingBuilder language="kotlin" - implementationClass="cc.polyfrost.sorbet.intelliprocessor.PreprocessorFolding" + implementationClass="org.polyfrost.sorbet.intelliprocessor.PreprocessorFolding" order="first" /> </extensions> -</idea-plugin>
\ No newline at end of file +</idea-plugin> |