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 FROM openjdk:latest
COPY ./target/RedditReposterBot.jar /usr/src/RedditReposterBot/ COPY . /usr/src/RedditReposterBot/
WORKDIR /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> <groupId>org.example</groupId>
<artifactId>RedditReposterBot</artifactId> <artifactId>RedditReposterBot</artifactId>
<version>1.0.3-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@ -26,8 +26,6 @@
<descriptorRefs> <descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef> <descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs> </descriptorRefs>
<finalName>RedditReposterBot</finalName>
<appendAssemblyId>false</appendAssemblyId>
<archive> <archive>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>

View File

@ -34,7 +34,7 @@ public class RedditReposterBot {
/** /**
* Version of the application. * Version of the application.
*/ */
private static final String VERSION = "1.0.3"; private static final String VERSION = "1.0.1";
/** /**
* Launch the Hypervisor. * Launch the Hypervisor.
@ -62,7 +62,7 @@ public class RedditReposterBot {
System.out.println("[*] App version " + VERSION); System.out.println("[*] App version " + VERSION);
Hypervisor master = Hypervisor.getSingleton(); Hypervisor master = Hypervisor.getSingleton();
master.addSocialMedia(new TwitterBot()); //master.addSocialMedia(new TwitterBot());
master.run(); master.run();
} }
} }