-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
46 lines (35 loc) · 1.37 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
FONT_ESC := $(shell printf '\033')
FONT_BOLD := ${FONT_ESC}[1m
FONT_NC := ${FONT_ESC}[0m # No colour
VERSION := $(shell git describe --tags --match 'v*' --abbrev=0 | cut -c2-)
all:
@echo "Use a specific goal. To list all goals, type 'make help'"
.PHONY: version # Prints project version
version:
@echo $(VERSION)
.PHONY: dependencies # Lists project dependencies
dependencies:
@./gradlew clean dependencies
.PHONY: unit-test # Runs unit tests
unit-test:
@./gradlew clean unitTest
.PHONY: unit-test-publish-report # Runs unit tests and publishes report
unit-test-publish-report:
@./gradlew clean unitTest coveralls
.PHONY: build # Builds artifacts
build:
@./gradlew clean build -Pversion=$(VERSION)
.PHONY: static-analysis # Analyzes the build
static-analysis:
@./gradlew clean check
.PHONY: security-analysis # Runs security analysis looking for vulnerabilities in code
security-analysis:
@./gradlew clean dependencyCheckAnalyze
.PHONY: publish # Publishes artifacts to the configured remote repository
publish:
@./gradlew clean signMavenPublication -Pversion=$(VERSION)
@./gradlew publishMavenPublicationToMavenCentralRepository -Pversion=$(VERSION)
.PHONY: help # Generate list of goals with descriptions
help:
@echo "Available goals:\n"
@grep '^.PHONY: .* #' Makefile | sed "s/\.PHONY: \(.*\) # \(.*\)/${FONT_BOLD}\1:${FONT_NC}\2~~/" | sed $$'s/~~/\\\n/g' | sed $$'s/~/\\\n\\\t/g'