We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb7e410 + d4f6a7a commit c6e01adCopy full SHA for c6e01ad
.gitignore
@@ -40,4 +40,9 @@ build/
40
## Debug
41
dispath/*
42
43
-_site/
+_site/
44
+
45
+agent.log
46
+pom.xml.versionsBackup
47
+**/pom.xml.versionsBackup
48
+site.tar.gz
Makefile
@@ -0,0 +1,10 @@
1
+# This file just contains shortcuts for dev, as there are a lot of options for different builds
2
3
+.PHONY: build
4
+build:
5
+ mvn clean package -U -B -pl agent,deep --also-make $(MVN_ARGS)
6
7
8
+.PHONY: install
9
+install:
10
+ mvn clean install -U -B -pl agent,deep --also-make $(MVN_ARGS)
0 commit comments