Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
task: updated to 1.13.2 and dropped support for 1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yannicklamprecht committed Oct 22, 2018
1 parent fea9407 commit 7e9877c
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 38 deletions.
63 changes: 31 additions & 32 deletions PathfinderPlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<artifactId>PathfinderPlugin</artifactId>
<version>${revision}</version>

<properties>
<kotlin.version>1.2.61</kotlin.version>
</properties>
<properties>
<kotlin.version>1.2.61</kotlin.version>
</properties>

<build>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
Expand Down Expand Up @@ -54,30 +54,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
</plugins>

</build>
Expand All @@ -86,7 +86,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.13-R0.1-SNAPSHOT</version>
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

Expand All @@ -110,12 +110,11 @@
<version>${revision}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<artifactId>Pathfinder_1_13_1</artifactId>
<artifactId>Pathfinder_1_13_2</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
6 changes: 3 additions & 3 deletions Pathfinder_1_13_1/pom.xml → Pathfinder_1_13_2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<version>${revision}</version>
</parent>

<artifactId>Pathfinder_1_13_1</artifactId>
<artifactId>Pathfinder_1_13_2</artifactId>
<version>${revision}</version>

<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.13.1-R0.1-SNAPSHOT</version>
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -70,4 +70,4 @@
</build>


</project>
</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spigot.version>1.13.1-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.13.2-R0.1-SNAPSHOT</spigot.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<revision>1.3.2-SNAPSHOT</revision>
<revision>1.3.3-SNAPSHOT</revision>
<kotlin.version>1.2.61</kotlin.version>
</properties>
<dependencies>
Expand All @@ -44,7 +44,7 @@
<module>PathfinderPlugin</module>
<module>Pathfinder_1_12</module>
<module>Pathfinder_1_13</module>
<module>Pathfinder_1_13_1</module>
<module>Pathfinder_1_13_2</module>
</modules>
</profile>
</profiles>
Expand Down

0 comments on commit 7e9877c

Please sign in to comment.