This commit is contained in:
Alexey Metlyakov
2021-03-14 16:47:29 +03:00
parent 173baec2fc
commit c7b8ef7a18
4 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>hello.HelloWorld</mainClass>
<mainClass>plaindoll.HelloPlayer</mainClass>
</transformer>
</transformers>
</configuration>

View File

@@ -1,4 +1,4 @@
package hello;
package plaindoll;
import org.joda.time.LocalTime;

View File

@@ -1,7 +1,7 @@
package hello;
package plaindoll;
public class Welcomer{
public String sayWelcome() {
return "Welcome back, Good Hunter!";
return "Welcome home, good hunter. What is it your desire?";
}
}

View File

@@ -1,4 +1,4 @@
package hello;
package plaindoll;
import static org.hamcrest.CoreMatchers.containsString;
import static org.junit.Assert.*;