Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbax committed May 27, 2017
1 parent f48e3e1 commit ee53199
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<artifactId>spectastic</artifactId>

<name>Spectastic</name>
<version>1.0.1</version>
<version>1.1.0</version>

<url>http://kitteh.org/</url>
<properties>
Expand Down Expand Up @@ -82,6 +82,30 @@
</dependency>
</dependencies>

<profiles>
<profile>
<id>spongerelease</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<finalName>spectastic</finalName>
<defaultGoal>clean install</defaultGoal>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kitteh/spectastic/Spectastic.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/**
* Spectate in style.
*/
@Plugin(id = "spectastic", name = "Spectastic", version = "1.1.0-SNAPSHOT")
@Plugin(id = "spectastic", name = "Spectastic", version = "1.1.0")
public class Spectastic {
public static final String PERMISSION_SPEC = "spectastic.spec";
public static final Key<Value<String>> PAST_GAME_MODE = KeyFactory.makeSingleKey(TypeToken.of(String.class), new TypeToken<Value<String>>(){}, DataQuery.of("PastGameMode"), "spectastic:past_gamemode", "Spectastic: Past game mode");
Expand Down

0 comments on commit ee53199

Please sign in to comment.