We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677fabc commit 0ae4e82Copy full SHA for 0ae4e82
Makefile
@@ -7,11 +7,13 @@ clean:
7
build: clean
8
docker run \
9
--rm \
10
- -v "$$(PWD)":/tmp/talon-client \
+ -u $$(id -u):$$(id -g) \
11
+ -v "$$(pwd)":/tmp/talon-client \
12
+ -v "$$HOME/.m2":/tmp/.m2 \
13
-w "/tmp/talon-client" \
14
maven:latest\
- /bin/bash -c "mvn clean install && \
- cp ~/.m2/repository/one/talon/talon-one-client/$(VERSION)/_remote.repositories target"
15
+ /bin/bash -c "mvn -Dmaven.repo.local=/tmp/.m2 clean install && \
16
+ cp /tmp/.m2/repository/one/talon/talon-one-client/$(VERSION)/_remote.repositories target"
17
18
bundle:
19
rm -rf $(DIST) && \
0 commit comments