File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,11 @@ val copyPlugin by tasks.creating(Copy::class.java) {
6363 }
6464
6565 from(filteredClasspath) {
66- include(" * .jar" )
66+ include(" $pluginId .jar" )
6767 }
6868
6969 from(" src/main/resources" ) {
70- include(" extensions .json" )
70+ include(" extension .json" )
7171 include(" icon.svg" )
7272 }
7373
Original file line number Diff line number Diff line change 11[versions ]
2- gateway = " 2.1.0.15856 "
2+ gateway = " 2.1.0.16315 "
33kotlin = " 1.8.10"
44coroutines = " 1.6.4"
55serialization = " 1.5.0"
Original file line number Diff line number Diff line change 11package toolbox.gateway.sample
22
3+ import com.jetbrains.toolbox.gateway.EnvironmentVisibilityState
34import com.jetbrains.toolbox.gateway.RemoteEnvironmentPropertiesConsumer
45import com.jetbrains.toolbox.gateway.RemoteProviderEnvironment
56import com.jetbrains.toolbox.gateway.environments.EnvironmentContentsView
6- import com.jetbrains.toolbox.gateway.environments.ManualEnvironmentContentsView
77import java.util.concurrent.CompletableFuture
88
99class SampleRemoteEnvironment (
@@ -22,7 +22,6 @@ class SampleRemoteEnvironment(
2222 return CompletableFuture .completedFuture(SampleEnvironmentContentsView ())
2323 }
2424
25- override fun setVisible (p0 : Boolean , p1 : Boolean ) {
26-
25+ override fun setVisible (visibilityState : EnvironmentVisibilityState ) {
2726 }
2827}
Original file line number Diff line number Diff line change 11package toolbox.gateway.sample
22
3+ import com.jetbrains.toolbox.gateway.ProviderVisibilityState
34import com.jetbrains.toolbox.gateway.RemoteEnvironmentConsumer
45import com.jetbrains.toolbox.gateway.RemoteProvider
56import kotlinx.coroutines.*
@@ -54,7 +55,7 @@ class SampleRemoteProvider(
5455 override fun canCreateNewEnvironments (): Boolean = true
5556 override fun isSingleEnvironment (): Boolean = false
5657
57- override fun setVisibilityState (p0 : Boolean , p1 : Boolean ) {}
58+ override fun setVisibilityState (visibilityState : ProviderVisibilityState ) {}
5859
5960 override fun addEnvironmentsListener (listener : RemoteEnvironmentConsumer ) {}
6061 override fun removeEnvironmentsListener (listener : RemoteEnvironmentConsumer ) {}
You can’t perform that action at this time.
0 commit comments