Skip to content

Commit

Permalink
Fixed package-name in plugin.yml, getting ready for release v1.7! (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemis-the-gr8 committed Aug 17, 2022
1 parent ff37999 commit 329bc8f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
16 changes: 16 additions & 0 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand All @@ -132,6 +133,7 @@
<executions>
<execution>
<id>attach-javadocs</id>
<phase>deploy</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down Expand Up @@ -173,6 +175,10 @@
</dependencyLinks>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</build>
<repositories>
Expand Down Expand Up @@ -213,6 +219,16 @@
<scope>compile</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.ithotl</groupId>
<artifactId>PlayerStats</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>

<name>PlayerStats</name>
<description>Statistics Plugin</description>
Expand Down Expand Up @@ -200,6 +200,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand Down Expand Up @@ -227,6 +228,7 @@
<executions>
<execution>
<id>attach-javadocs</id>
<phase>deploy</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
main: com.github.artemis.the.gr8.playerstats.Main
main: com.artemis.the.gr8.playerstats.Main
name: PlayerStats
version: 1.7
api-version: 1.13
Expand Down

0 comments on commit 329bc8f

Please sign in to comment.