File tree Expand file tree Collapse file tree 3 files changed +5
-19
lines changed
contrib/datawave-quickstart
microservices/starters/datawave Expand file tree Collapse file tree 3 files changed +5
-19
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ function downloadMavenTarball() {
136
136
tarball=" ${artifact} -${version} .tar.gz"
137
137
if [ ! -f " ${tarballdir} /${tarball} " ] ; then
138
138
# download from maven repo
139
- output=$( mvn -f " ${pomFile} " -pl " ${rootProject} " -DremoteRepositories=" remote-repo::default::${DW_MAVEN_REPOSITORY} " dependency:get -Dartifact=" ${group} :${artifact} :${version} " -Dpackaging=" tar.gz" )
139
+ output=$( mvn --show-version --batch-mode --errors --no-transfer-progress --file " ${pomFile} " --projects " ${rootProject} " -DremoteRepositories=" remote-repo::default::${DW_MAVEN_REPOSITORY} " dependency:get -Dartifact=" ${group} :${artifact} :${version} " -Dpackaging=" tar.gz" )
140
140
retVal=$?
141
141
if [ $retVal -ne 0 ]; then
142
142
error " Failed to download ${tarball} via maven"
@@ -147,7 +147,7 @@ function downloadMavenTarball() {
147
147
fi
148
148
149
149
# copy to specified directory
150
- output=$( mvn -f " ${pomFile} " -pl " ${rootProject} " dependency:copy -Dartifact=" ${group} :${artifact} :${version} :tar.gz" -DoutputDirectory=" ${tarballdir} " )
150
+ output=$( mvn --show-version --batch-mode --errors --no-transfer-progress --file " ${pomFile} " --projects " ${rootProject} " dependency:copy -Dartifact=" ${group} :${artifact} :${version} :tar.gz" -DoutputDirectory=" ${tarballdir} " )
151
151
retVal=$?
152
152
if [ $retVal -ne 0 ]; then
153
153
error " Failed to copy ${tarball} to ${tarballdir} via maven"
Original file line number Diff line number Diff line change 31
31
<url .zookeeper>file://${DW_CLOUD_PLUGINS} /accumulo/${dist.zookeeper} </url .zookeeper>
32
32
33
33
<version .quickstart.accumulo>2.1.4-5792fed3-bulkv2</version .quickstart.accumulo>
34
- <version .quickstart.hadoop>3.3.6 </version .quickstart.hadoop>
35
- <version .quickstart.wildfly>17.0.1 </version .quickstart.wildfly>
36
- <version .quickstart.zookeeper>3.8.4 </version .quickstart.zookeeper>
34
+ <version .quickstart.hadoop>${version.hadoop} </version .quickstart.hadoop>
35
+ <version .quickstart.wildfly>${version.wildfly} </version .quickstart.wildfly>
36
+ <version .quickstart.zookeeper>${version.zookeeper} </version .quickstart.zookeeper>
37
37
38
38
</properties >
39
39
<dependencies >
Original file line number Diff line number Diff line change 399
399
</exclusion >
400
400
</exclusions >
401
401
</dependency >
402
- <dependency >
403
- <groupId >org.springframework.boot</groupId >
404
- <artifactId >spring-boot-starter-web</artifactId >
405
- <exclusions >
406
- <exclusion >
407
- <groupId >org.springframework.boot</groupId >
408
- <artifactId >spring-boot-starter-logging</artifactId >
409
- </exclusion >
410
- <exclusion >
411
- <groupId >org.springframework.boot</groupId >
412
- <artifactId >spring-boot-starter-tomcat</artifactId >
413
- </exclusion >
414
- </exclusions >
415
- </dependency >
416
402
<dependency >
417
403
<groupId >org.springframework.cloud</groupId >
418
404
<artifactId >spring-cloud-config-client</artifactId >
You can’t perform that action at this time.
0 commit comments