Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • foss-ag/events/hackatron/hackatron-wrapper
  • monsterdruide1/hacka-tron-schatten
2 results
Select Git revision
  • main
1 result
Show changes
Commits on Source (2)
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<mainClass>de.fossag.Main</mainClass> <mainClass>de.fossag.hackatron.Main</mainClass>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<exec.mainClass>de.fossag.Main</exec.mainClass> <exec.mainClass>de.fossag.hackatron.Main</exec.mainClass>
</properties> </properties>
</project> </project>
\ No newline at end of file
package de.fossag; package de.fossag.hackatron;
public class DummyHackatronClient implements IHackatronClient { public class HackatronClient implements IHackatronClient {
private IMessageSender messageSender; private IMessageSender messageSender;
private static final String CLIENT_NAME = "dummyclient"; private static final String CLIENT_NAME = "dummyclient";
......
package de.fossag; package de.fossag.hackatron;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;
......
package de.fossag; package de.fossag.hackatron;
public interface IHackatronClient { public interface IHackatronClient {
......
package de.fossag; package de.fossag.hackatron;
public interface IMessageSender { public interface IMessageSender {
......
package de.fossag; package de.fossag.hackatron;
import java.io.IOException; import java.io.IOException;
...@@ -8,7 +8,7 @@ public class Main { ...@@ -8,7 +8,7 @@ public class Main {
HackatronWrapper client = new HackatronWrapper( HackatronWrapper client = new HackatronWrapper(
"hackatron.de", "hackatron.de",
4000, 4000,
new DummyHackatronClient()); new HackatronClient());
client.run(); client.run();
} }
} }
\ No newline at end of file