commit
e18ac3eb14
3 changed files with 6 additions and 2 deletions
4
pom.xml
4
pom.xml
|
@ -1,6 +1,6 @@
|
|||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>drtshock</groupId>
|
||||
<groupId>org.drtshock</groupId>
|
||||
<artifactId>potato</artifactId>
|
||||
<version>1.0</version>
|
||||
<name>Potato</name>
|
||||
|
@ -24,7 +24,7 @@
|
|||
<addMavenDescriptor>false</addMavenDescriptor>
|
||||
<manifest>
|
||||
<addClasspath>true</addClasspath>
|
||||
<mainClass>Potato</mainClass>
|
||||
<mainClass>org.drtshock.Potato</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
<finalName>Potato</finalName>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
package org.drtshock;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
package org.drtshock;
|
||||
|
||||
public interface Tuber {
|
||||
public boolean isDelicious();
|
||||
}
|
Loading…
Reference in a new issue