forked from opentracing-contrib/java-spring-cloud
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
15 lines (11 loc) · 423 Bytes
/
Copy pathMakefile
File metadata and controls
15 lines (11 loc) · 423 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PROFILES = nodeps alldeps
ALL: default classpath
default:
@./mvnw clean install
finchley:
@./mvnw clean test -Dversion.org.springframework.boot=2.0.3.RELEASE -Dversion.org.springframework.cloud-spring-cloud-dependencies=Finchley.RELEASE
classpath:
@for profile in$(PROFILES);do\
echo"---> Executing profile $$profile";\
./mvnw -f opentracing-spring-cloud-starter -P $$profile clean test||exit 1;\
done