Skip to content

Commit

Permalink
Replace ${revision} tag with ${project.version}, fixes #63
Browse files Browse the repository at this point in the history
  • Loading branch information
PXAV committed May 24, 2021
1 parent 9cfbbeb commit 7680535
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.pxav.kelp</groupId>
<artifactId>parent</artifactId>
<version>${revision}</version>
<version>0.4.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/plugin.yml
@@ -1,5 +1,5 @@
name: Kelp
version: ${revision}
version: ${project.version}
main: de.pxav.kelp.core.KelpPlugin
author: pxav
description: A cross version spigot framework.
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -7,16 +7,16 @@
<groupId>com.github.pxav.kelp</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<version>0.4.0</version>

<name>Kelp</name>
<description>A cross-version spigot framework to avoid boilerplate code and make your plugin compatible with multiple spigot versions easily</description>
<url>https://www.github.com/KelpFramework/kelp</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>0.4.0</revision>
<kotlin.version>1.4.32</kotlin.version>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
</properties>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions testing-module/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.pxav.kelp</groupId>
<version>${revision}</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>com.github.pxav.kelp</groupId>
<artifactId>core</artifactId>
<version>${revision}</version>
<version>${project.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand Down
4 changes: 2 additions & 2 deletions v1_8_implementation/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.pxav.kelp</groupId>
<artifactId>parent</artifactId>
<version>${revision}</version>
<version>0.4.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>com.github.pxav.kelp</groupId>
<artifactId>core</artifactId>
<version>${revision}</version>
<version>${project.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand Down
3 changes: 2 additions & 1 deletion v_1_14_implementation/pom.xml
Expand Up @@ -5,8 +5,9 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.pxav.kelp</groupId>
<version>0.3.4</version>
<version>0.4.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>v_1_14_implementation</artifactId>
Expand Down

0 comments on commit 7680535

Please sign in to comment.