Skip to content

Commit

Permalink
Fix version and use java 16
Browse files Browse the repository at this point in the history
  • Loading branch information
steenooo committed Nov 30, 2021
1 parent 812b1fa commit 1a745ae
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
- uses: actions/checkout@v2
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
java-version: '17'
java-version: '16'
distribution: 'adopt'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ MiniChat is available through GitHub packages.
<dependency>
<groupId>dev.steyn</groupId>
<artifactId>minichat</artifactId>
<version>1.0</version>
<version>1.0.0</version>
</dependency>
```

Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@

<name>MiniChat</name>


<properties>
<java.version>16</java.version>
<luckperms.version>5.3</luckperms.version>
<minimessage.version>4.1.0-SNAPSHOT</minimessage.version>
<paper.version>1.17.1-R0.1-SNAPSHOT</paper.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>


<dependencies>
<dependency>
<groupId>net.luckperms</groupId>
Expand Down Expand Up @@ -86,12 +94,4 @@
<url>https://maven.pkg.github.com/steenooo/minichat</url>
</repository>
</distributionManagement>
<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<minimessage.version>4.1.0-SNAPSHOT</minimessage.version>
<luckperms.version>5.3</luckperms.version>
<paper.version>1.17.1-R0.1-SNAPSHOT</paper.version>
</properties>

</project>

0 comments on commit 1a745ae

Please sign in to comment.