Skip to content

Commit

Permalink
fix: voting plugin compatilbilty (#8)
Browse files Browse the repository at this point in the history
* fix: voting plugin compatilbilty

* bump 0.2.3

---------

Co-authored-by: Netherwhal <[email protected]>
  • Loading branch information
rexlManu and Netherwhal authored Feb 15, 2024
1 parent d8db660 commit 681732a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'net.simplyvanilla'
version '0.2.2'
version '0.2.3'

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with Votifier. If not, see <http://www.gnu.org/licenses/>.
*/

package net.simplyvanilla.simplyvotifier.model;
package com.vexsoftware.votifier.model;

import lombok.Getter;
import lombok.Setter;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.simplyvanilla.simplyvotifier.model;
package com.vexsoftware.votifier.model;

import lombok.Getter;
import org.bukkit.Bukkit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
import lombok.Setter;
import net.simplyvanilla.simplyvotifier.crypto.RSAIO;
import net.simplyvanilla.simplyvotifier.crypto.RSAKeygen;
import net.simplyvanilla.simplyvotifier.model.Vote;
import net.simplyvanilla.simplyvotifier.model.VotifierEvent;
import com.vexsoftware.votifier.model.Vote;
import com.vexsoftware.votifier.model.VotifierEvent;
import net.simplyvanilla.simplyvotifier.net.VoteReceiver;
import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
package net.simplyvanilla.simplyvotifier.net;

import net.simplyvanilla.simplyvotifier.crypto.RSA;
import net.simplyvanilla.simplyvotifier.model.Vote;
import com.vexsoftware.votifier.model.Vote;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
Expand Down

0 comments on commit 681732a

Please sign in to comment.