Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,17 @@ your application.


mvn -B archetype:generate -DarchetypeGroupId=com.github.katari \
-DarchetypeArtifactId=k2-archetype-application -DarchetypeCatalog=local \
-DarchetypeArtifactId=k2-archetype-application -DarchetypeVersion=0.1.8 \
-DarchetypeCatalog=local \
-DgroupId=sample -DartifactId=sample \
-Dpackage=sample -DclassPrefix=Sample -Dversion=0.1-SNAPSHOT


This is the command we used to generate the k2-shiro module:

mvn -B archetype:generate -DarchetypeGroupId=com.github.katari \
-DarchetypeArtifactId=k2-archetype-module -DarchetypeCatalog=local \
-DarchetypeArtifactId=k2-archetype-module -DarchetypeVersion=0.1.8 \
-DarchetypeCatalog=local \
-DgroupId=com.github.katari -DartifactId=k2-shiro \
-Dpackage=com.k2.shiro -DclassPrefix=Shiro -Dversion=0.1-SNAPSHOT

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public synchronized void stop() {
// Ignore all calls to stop, just in case.
}

public static void main(final String ... args) {
public static void main(final String... args) {
application = new TestApplication();
application.run(args);
}
Expand Down