forked from jondmarien/Burpcord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (20 loc) · 877 Bytes
/
Makefile
File metadata and controls
27 lines (20 loc) · 877 Bytes
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
.PHONY: all build build-all clean publish-core publish-all help
all: build
build:
cmd /c gradlew.bat shadowJar
build-all:
cmd /c gradlew.bat clean shadowJar sourcesJar plainJavadocJar
publish-core:
cmd /c gradlew.bat publishAllPublicationsToGithubPackagesRepository
publish-all:
cmd /c gradlew.bat publishAllPublicationsToGithubPackagesRepository publishMavenPublicationToGithubPackagesRepository
clean:
cmd /c gradlew.bat clean
help:
@cmd /c echo Available commands:
@cmd /c echo make build - Build the shadow JAR
@cmd /c echo make build-all - Clean build with sources and javadoc JARs
@cmd /c echo make clean - Remove build artifacts
@cmd /c echo make publish-core - Publish to GitHub Packages
@cmd /c echo make publish-all - Publish to GitHub Packages and Maven Central
@cmd /c echo make help - Show this help message