Skip to content

Commit

Permalink
GuiEngine moved to kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
ToberoCat committed Sep 1, 2023
1 parent 3eb6733 commit dac10ae
Show file tree
Hide file tree
Showing 147 changed files with 6,102 additions and 7,680 deletions.
29 changes: 28 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>

<!-- Dependency Versions -->
<jackson.version>2.15.2</jackson.version>
<commons.text.version>1.10.0</commons.text.version>
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
<spigot.api.version>1.18.1-R0.1-SNAPSHOT</spigot.api.version>
<toberocore.version>90d5cd2a78</toberocore.version>
<toberocore.version>0f2d094899</toberocore.version>

<!-- Server Location -->
<server.location>H:\Development\Minecraft\Spigot\Server1.19\plugins</server.location>
Expand All @@ -41,6 +43,11 @@
</repositories>

<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.8.21</version>
</dependency>
<dependency>
<groupId>com.github.ToberoCat</groupId>
<artifactId>ToberoCore</artifactId>
Expand All @@ -57,6 +64,11 @@
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
Expand All @@ -83,7 +95,22 @@
</dependencies>

<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>1.8.21</version>
<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
Loading

0 comments on commit dac10ae

Please sign in to comment.