Issue #2696 Fix generation of gcloud deps (#2697)

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2018-07-05 14:25:59 +02:00 committed by GitHub
parent 635cf4d374
commit f6380feef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -99,6 +99,7 @@
<outputFile>${project.build.directory}/deps.txt</outputFile> <outputFile>${project.build.directory}/deps.txt</outputFile>
<sort>true</sort> <sort>true</sort>
<excludeGroupIds>org.eclipse.jetty</excludeGroupIds> <excludeGroupIds>org.eclipse.jetty</excludeGroupIds>
<excludeGroupIds>javax.servlet</excludeGroupIds>
<prependGroupId>true</prependGroupId> <prependGroupId>true</prependGroupId>
<includeScope>runtime</includeScope> <includeScope>runtime</includeScope>
</configuration> </configuration>
@ -118,7 +119,7 @@
<configuration> <configuration>
<tasks> <tasks>
<replaceregexp file="${project.build.directory}/deps.txt" <replaceregexp file="${project.build.directory}/deps.txt"
match=" *(.*):(.*):jar:(.*):[a-z]*" match=" *(.*):(.*):jar:(.*):.*$"
replace="maven://\1/\2/\3|lib/gcloud/\2-\3.jar" replace="maven://\1/\2/\3|lib/gcloud/\2-\3.jar"
byline="true" byline="true"
/> />