Skip to content

Commit

Permalink
usage fixes, release 0.0.8 preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBien committed Feb 7, 2019
1 parent 5b1c10e commit 3a62758
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.airhacks</groupId>
<artifactId>wad</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void exit() {

public static void printUsage() {
String message = loadMessage("usage.txt");
System.out.println("message = " + message);
System.out.println(message);
}

public static String loadMessage(String fileName) {
Expand Down
7 changes: 5 additions & 2 deletions src/main/resources/usage.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@

pom.xml does not exist. To create a Java EE 8 ThinWAR project, perform:
pom.xml does not exist in the current folder. To create a Java EE 8 ThinWAR project, perform:

---

mvn archetype:generate -DarchetypeGroupId=com.airhacks -DarchetypeArtifactId=javaee8-essentials-archetype -DarchetypeVersion=0.0.2 -DgroupId=com.airhacks -Dversion=0.0.1 -Darchetype.interactive=false --batch-mode -DartifactId=[ThinWAR name]
mvn archetype:generate -DarchetypeGroupId=com.airhacks -DarchetypeArtifactId=javaee8-essentials-archetype -DarchetypeVersion=0.0.2 -DgroupId=com.airhacks -Dversion=0.0.1 -Darchetype.interactive=false --batch-mode -DartifactId=[ThinWAR name]

---

0 comments on commit 3a62758

Please sign in to comment.