Skip to content

Commit

Permalink
Remove kotlin stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiyotoko committed Apr 24, 2024
1 parent 8183b78 commit ff15c1a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 15 deletions.
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
### Setup ###
dist/
players/
plugins/
results/
/*/
!src

# Compiled class file
*.class
Expand Down
2 changes: 1 addition & 1 deletion config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ thrust=0.1
friction=0.02

[python-plugin]
exec-cmd=dist/client/run_client {file}
exec-cmd=plugins/run_client {file}
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@
<artifactId>ini4j</artifactId>
<version>0.5.4</version>
</dependency>
<dependency> <!-- Only needed for plugins -->
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.9.23</version>
</dependency>
<!-- Annotations -->
<dependency>
<groupId>org.apache.tomcat</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/seekers/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.seekers;

import org.ini4j.Ini;
import org.pf4j.DefaultPluginManager;
import org.pf4j.JarPluginManager;
import org.pf4j.PluginManager;
import org.seekers.grpc.SeekersServer;

Expand Down Expand Up @@ -47,7 +47,7 @@ public class App extends Application {

private static final Logger logger = LoggerFactory.getLogger(App.class);

private final @Nonnull PluginManager manager = new DefaultPluginManager();
private final @Nonnull PluginManager manager = new JarPluginManager();
private final @Nonnull List<LanguageLoader> loaders = new ArrayList<>();
private final @Nonnull Ini config = new Ini();

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/seekers/game/Goal.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ public class GoalAnimation extends Animation {
private final Circle wave = new Circle(0);

/**
* Creates a new scoring animation.
*
*
* @param game
* @param game the game
*/
public GoalAnimation(Game game) {
super(game);
Expand Down

0 comments on commit ff15c1a

Please sign in to comment.