Compare commits
10 Commits
ec67b3d43a
...
cb4e9830b3
Author | SHA1 | Date | |
---|---|---|---|
cb4e9830b3 | |||
e6d5ea7909 | |||
c5b1654798 | |||
9d25beb854 | |||
672891c1d4 | |||
3b7fff8a17 | |||
34e91dcc0d | |||
|
dcda959c9e | ||
|
7300cbb533 | ||
|
b8049ee7d7 |
@ -1,4 +1,4 @@
|
||||
FROM openjdk:latest
|
||||
COPY . /usr/src/RedditReposterBot/
|
||||
COPY ./target/RedditReposterBot.jar /usr/src/RedditReposterBot/
|
||||
WORKDIR /usr/src/RedditReposterBot/
|
||||
CMD [ "java", "-jar", "RedditReposterBot-full.jar" ]
|
||||
CMD [ "java", "-jar", "RedditReposterBot.jar" ]
|
4
pom.xml
4
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.example</groupId>
|
||||
<artifactId>RedditReposterBot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<version>1.0.3-SNAPSHOT</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
@ -26,6 +26,8 @@
|
||||
<descriptorRefs>
|
||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<finalName>RedditReposterBot</finalName>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
<archive>
|
||||
<manifest>
|
||||
<addClasspath>true</addClasspath>
|
||||
|
@ -34,7 +34,7 @@ public class RedditReposterBot {
|
||||
/**
|
||||
* Version of the application.
|
||||
*/
|
||||
private static final String VERSION = "1.0.1";
|
||||
private static final String VERSION = "1.0.3";
|
||||
|
||||
/**
|
||||
* Launch the Hypervisor.
|
||||
@ -62,7 +62,7 @@ public class RedditReposterBot {
|
||||
|
||||
System.out.println("[*] App version " + VERSION);
|
||||
Hypervisor master = Hypervisor.getSingleton();
|
||||
//master.addSocialMedia(new TwitterBot());
|
||||
master.addSocialMedia(new TwitterBot());
|
||||
master.run();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user