Skip to content

Commit 75398b1

Browse files
committed
let's heroku this
1 parent 0e0d0c9 commit 75398b1

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
.idea/
33
target/
44
*.iml
5-
6-
TokenHolder.kt
5+
dependency-reduced-pom.xml

TokenHolderExample.kt

-5
This file was deleted.

pom.xml

+9-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@
9797
<artifactId>heroku-maven-plugin</artifactId>
9898
<version>2.0.2</version>
9999
<configuration>
100-
<appName>one-punch-bot</appName>
100+
<appName>wobwobwob</appName>
101101
<processTypes>
102-
<run>java $JAVA_OPTS -cp target/classes:target/dependency/* eladkay.onepunchbot.Main</run>
102+
<run>java $JAVA_OPTS -cp target/classes:target/dependency/* wiresegal.wob.WordsOfBrandonKt</run>
103103
</processTypes>
104104
</configuration>
105105
</plugin>
@@ -175,6 +175,13 @@
175175
<artifactId>jsoup</artifactId>
176176
<version>1.11.2</version>
177177
</dependency>
178+
<dependency>
179+
<groupId>de.btobastian.javacord</groupId>
180+
<artifactId>javacord</artifactId>
181+
<version>3.0</version>
182+
<scope>system</scope>
183+
<systemPath>${project.basedir}/libs/javacord-3.0.0-shaded.jar</systemPath>
184+
</dependency>
178185
</dependencies>
179186

180187
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package wiresegal.wob
2+
3+
/**
4+
* @author WireSegal
5+
* Created at 12:03 AM on 1/26/18.
6+
*/
7+
8+
val token: String = System.getenv("DISCORD_TOKEN")

0 commit comments

Comments
 (0)