aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-11-22 10:22:27 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-11-22 14:36:08 +0100
commitb291c363badec283553d8e013c5fa912a930e764 (patch)
treebfc5a298b720c72901a650e28929c61ae4e7e1d7 /README.adoc
parent4562aed1971ca9cd401cd649d23333a84a20658e (diff)
Project skeleton
Change-Id: I5609adfca13ffad643a3db93e848fc01636b066a
Diffstat (limited to 'README.adoc')
-rw-r--r--README.adoc62
1 files changed, 62 insertions, 0 deletions
diff --git a/README.adoc b/README.adoc
new file mode 100644
index 0000000..c9ae2de
--- /dev/null
+++ b/README.adoc
@@ -0,0 +1,62 @@
+= ÄndGgner -- Programmbibliothek zur Konsolidierung von Änderungsgesetzen des Bundes und der Länder
+Matthias Andreas Benkard
+// Meta
+:experimental:
+:data-uri:
+:sectnums:
+:toc:
+:stem:
+:toclevels: 2
+:description: ÄndGgner Manual
+:keywords: mulk
+// Settings
+:icons: font
+:source-highlighter: pygments
+
+
+== Resources
+
+|===
+|Resource |Links
+
+|Public Artifact
+|https://bintray.com/mulk/maven/aendggner[Bintray]
+
+|Bug Tracker
+|MantisBT
+|===
+
+
+[[building]]
+== Building a JAR
+
+To build an executable JAR at
+`target/aendggner-${REVISION}-shaded.jar`:
+
+[source,shell script]
+----
+./mvnw package
+----
+
+`${REVISION}` defaults to `0.1.0-SNAPSHOT` unless you override it by
+passing the `-Drevision` flag to `mvnw`.
+
+
+== Running the Command Line Application
+
+To run the command line application after <<building,building>> it:
+
+[source,shell script]
+----
+./mvnw exec:java
+----
+
+
+== Running the Tests
+
+To build and run the tests:
+
+[source,shell script]
+----
+./mvnw verify
+----