From: Jordan Duabe <1442368+j4ckofalltrades@users.noreply.github.com> Date: Sat, 27 Mar 2021 11:15:28 +0530 Subject: Use latest action-api in twitch host channel --- Use latest action-api in twitch host channel --- --- 'a/twitch/host-channel/pom.xml' +++ b/twitch/host-channel/pom.xml @@ -11,8 +11,8 @@ 11 11 - 1.0.0 - 1.0.0 + 1.0.0-SNAPSHOT + 1.0.0-SNAPSHOT 1.0.0 0.6.3 --- 'a/twitch/host-channel/src/main/java/hostchannel/HostChannelAction.java' +++ b/twitch/host-channel/src/main/java/hostchannel/HostChannelAction.java @@ -4,7 +4,7 @@ import com.gikk.twirk.Twirk; import com.gikk.twirk.TwirkBuilder; import com.stream_pi.action_api.actionproperty.property.Property; import com.stream_pi.action_api.actionproperty.property.Type; -import com.stream_pi.action_api.normalaction.NormalAction; +import com.stream_pi.action_api.externalplugin.NormalAction; import com.stream_pi.util.exception.StreamPiException; import com.stream_pi.util.version.Version; import connect.chat.TwitchChatCredentials; --- 'a/twitch/host-channel/src/main/java/module-info.java' +++ b/twitch/host-channel/src/main/java/module-info.java @@ -5,5 +5,5 @@ module com.stream_pi.twitch.hostchannela requires com.stream_pi.twitchchatconnectaction; requires Java.Twirk; - provides com.stream_pi.action_api.normalaction.NormalAction with hostchannel.HostChannelAction; + provides com.stream_pi.action_api.externalplugin.ExternalPlugin with hostchannel.HostChannelAction; }