Skip to content

Commit ee53199

Browse files
committed
1.1.0
1 parent f48e3e1 commit ee53199

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>spectastic</artifactId>
99

1010
<name>Spectastic</name>
11-
<version>1.0.1</version>
11+
<version>1.1.0</version>
1212

1313
<url>http://kitteh.org/</url>
1414
<properties>
@@ -82,6 +82,30 @@
8282
</dependency>
8383
</dependencies>
8484

85+
<profiles>
86+
<profile>
87+
<id>spongerelease</id>
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-gpg-plugin</artifactId>
93+
<version>1.6</version>
94+
<executions>
95+
<execution>
96+
<id>sign-artifacts</id>
97+
<phase>verify</phase>
98+
<goals>
99+
<goal>sign</goal>
100+
</goals>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
</plugins>
105+
</build>
106+
</profile>
107+
</profiles>
108+
85109
<build>
86110
<finalName>spectastic</finalName>
87111
<defaultGoal>clean install</defaultGoal>

src/main/java/org/kitteh/spectastic/Spectastic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
/**
5656
* Spectate in style.
5757
*/
58-
@Plugin(id = "spectastic", name = "Spectastic", version = "1.1.0-SNAPSHOT")
58+
@Plugin(id = "spectastic", name = "Spectastic", version = "1.1.0")
5959
public class Spectastic {
6060
public static final String PERMISSION_SPEC = "spectastic.spec";
6161
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");

0 commit comments

Comments
 (0)