File tree Expand file tree Collapse file tree 6 files changed +12
-9
lines changed
java/io/github/schorcher/stringInterpolation Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,15 @@ version = properties("pluginVersion")
2525
2626// Configure project's dependencies
2727repositories {
28- mavenLocal()
28+ // mavenLocal()
2929 mavenCentral()
30+ maven {
31+ setUrl(" https://s01.oss.sonatype.org/content/repositories/snapshots/" )
32+ }
3033}
3134dependencies {
3235 detektPlugins(" io.gitlab.arturbosch.detekt:detekt-formatting:1.17.1" )
33- implementation(" com .github.schorcher.stringInterpolator:JavaStringInterpolation:1.0-DEV " )
36+ implementation(" io .github.schorcher.stringInterpolator:stringInterpolator:0.8.0-SNAPSHOT " )
3437}
3538
3639// Configure gradle-intellij-plugin plugin.
Original file line number Diff line number Diff line change 11# IntelliJ Platform Artifacts Repositories
22# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33
4- pluginGroup = com .github.schorcher.stringInterpolation
4+ pluginGroup = io .github.schorcher.stringInterpolation
55pluginName = Java String Interpolation
66pluginVersion = 0.5
77
Original file line number Diff line number Diff line change 1- package com .github .schorcher .stringInterpolation ;
1+ package io .github .schorcher .stringInterpolation ;
22
33import com .intellij .lang .java .JavaLanguage ;
44import lombok .Getter ;
Original file line number Diff line number Diff line change 1- package com .github .schorcher .stringInterpolation ;
1+ package io .github .schorcher .stringInterpolation ;
22
3- import com .github .schorcher .stringInterpolator .StringInterpolation ;
3+ import io .github .schorcher .stringInterpolator .StringInterpolation ;
44import com .intellij .lang .java .JavaLanguage ;
55import com .intellij .openapi .util .TextRange ;
66import com .intellij .psi .*;
Original file line number Diff line number Diff line change 1- package com .github .schorcher .stringInterpolation ;
1+ package io .github .schorcher .stringInterpolation ;
22
33import com .intellij .lang .Language ;
44import lombok .AllArgsConstructor ;
Original file line number Diff line number Diff line change 11<idea-plugin >
2- <id >com .github.schorcher.stringInterpolation</id >
2+ <id >io .github.schorcher.stringInterpolation</id >
33 <name >Java String Interpolation</name >
44 <vendor >Schorcher</vendor >
55
88 <depends >com.intellij.modules.java</depends >
99
1010 <extensions defaultExtensionNs =" com.intellij" >
11- <languageInjector implementation =" com .github.schorcher.stringInterpolation.InterpolatedStringInjector" order =" first" />
11+ <languageInjector implementation =" io .github.schorcher.stringInterpolation.InterpolatedStringInjector" order =" first" />
1212 </extensions >
1313</idea-plugin >
You can’t perform that action at this time.
0 commit comments