Compare commits

..

No commits in common. "cb4e9830b38c481a73e4126013ba68cf02a3d62e" and "ec67b3d43a12d4c9dcb9730dfaa1474999a43b8d" have entirely different histories.

3 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM openjdk:latest
COPY ./target/RedditReposterBot.jar /usr/src/RedditReposterBot/
COPY . /usr/src/RedditReposterBot/
WORKDIR /usr/src/RedditReposterBot/
CMD [ "java", "-jar", "RedditReposterBot.jar" ]
CMD [ "java", "-jar", "RedditReposterBot-full.jar" ]

View File

@ -6,7 +6,7 @@
<groupId>org.example</groupId>
<artifactId>RedditReposterBot</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
@ -26,8 +26,6 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>RedditReposterBot</finalName>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<addClasspath>true</addClasspath>

View File

@ -34,7 +34,7 @@ public class RedditReposterBot {
/**
* Version of the application.
*/
private static final String VERSION = "1.0.3";
private static final String VERSION = "1.0.1";
/**
* 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();
}
}