Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
|
8431ace7ef | 2 years ago |
@ -0,0 +1,46 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>de.mrbesen</groupId> |
||||
<artifactId>clashroyalebot</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>1.0-SNAPSHOT</version> |
||||
<name>clashroyalebot</name> |
||||
<url>http://maven.apache.org</url> |
||||
<properties> |
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||
<maven.compiler.target>1.8</maven.compiler.target> |
||||
<maven.compiler.source>1.8</maven.compiler.source> |
||||
</properties> |
||||
<dependencies> |
||||
|
||||
</dependencies> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-assembly-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>package</phase> |
||||
<goals> |
||||
<goal>single</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<configuration> |
||||
<descriptorRefs> |
||||
<descriptorRef>jar-with-dependencies</descriptorRef> |
||||
</descriptorRefs> |
||||
<archive> |
||||
<manifest> |
||||
<mainClass>de.mrbesen.cr.auto.clicker.Main</mainClass> |
||||
</manifest> |
||||
<manifestEntries> |
||||
<Class-Path>.</Class-Path> |
||||
</manifestEntries> |
||||
</archive> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</project> |
@ -1,4 +1,4 @@ |
||||
package mrbesen.cr.auto.clicker; |
||||
package de.mrbesen.cr.auto.clicker; |
||||
|
||||
public class Main { |
||||
|
@ -1,4 +1,4 @@ |
||||
package mrbesen.cr.auto.clicker; |
||||
package de.mrbesen.cr.auto.clicker; |
||||
|
||||
import java.awt.Color; |
||||
import java.awt.Graphics; |
@ -1,4 +1,4 @@ |
||||
package mrbesen.cr.auto.clicker; |
||||
package de.mrbesen.cr.auto.clicker; |
||||
|
||||
import java.util.Random; |
||||
|
@ -1,4 +1,4 @@ |
||||
package mrbesen.cr.auto.clicker; |
||||
package de.mrbesen.cr.auto.clicker; |
||||
|
||||
import java.awt.AWTException; |
||||
import java.awt.Color; |
@ -1,4 +1,4 @@ |
||||
package mrbesen.cr.auto.clicker; |
||||
package de.mrbesen.cr.auto.clicker; |
||||
|
||||
import java.awt.Color; |
||||
|
Loading…
Reference in new issue