Skip to content

Commit c6e01ad

Browse files
authored
Merge pull request #5 from intergral/impr_dev
feat(dev): add make file to simplify dev functions
2 parents bb7e410 + d4f6a7a commit c6e01ad

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,9 @@ build/
4040
## Debug
4141
dispath/*
4242

43-
_site/
43+
_site/
44+
45+
agent.log
46+
pom.xml.versionsBackup
47+
**/pom.xml.versionsBackup
48+
site.tar.gz

Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)