blob: c9ae2de622730a8417066e45ee1d38f84f45fe13 [file] [log] [blame]
Matthias Andreas Benkardb291c362020-11-22 10:22:27 +01001= ÄndGgner -- Programmbibliothek zur Konsolidierung von Änderungsgesetzen des Bundes und der Länder
2Matthias Andreas Benkard
3// Meta
4:experimental:
5:data-uri:
6:sectnums:
7:toc:
8:stem:
9:toclevels: 2
10:description: ÄndGgner Manual
11:keywords: mulk
12// Settings
13:icons: font
14:source-highlighter: pygments
15
16
17== Resources
18
19|===
20|Resource |Links
21
22|Public Artifact
23|https://bintray.com/mulk/maven/aendggner[Bintray]
24
25|Bug Tracker
26|MantisBT
27|===
28
29
30[[building]]
31== Building a JAR
32
33To build an executable JAR at
34`target/aendggner-${REVISION}-shaded.jar`:
35
36[source,shell script]
37----
38./mvnw package
39----
40
41`${REVISION}` defaults to `0.1.0-SNAPSHOT` unless you override it by
42passing the `-Drevision` flag to `mvnw`.
43
44
45== Running the Command Line Application
46
47To run the command line application after <<building,building>> it:
48
49[source,shell script]
50----
51./mvnw exec:java
52----
53
54
55== Running the Tests
56
57To build and run the tests:
58
59[source,shell script]
60----
61./mvnw verify
62----