Skip to content

Commit

Permalink
Merge pull request #297 from GoogleCloudPlatform:improve-parallel-bui…
Browse files Browse the repository at this point in the history
…d-fix

PiperOrigin-RevId: 689641854
Change-Id: I153baa265824016645c7684c25b5f17c7bb900c6
  • Loading branch information
gae-java-bot committed Oct 25, 2024
2 parents b3bb750 + f15dd0b commit c7e7821
Showing 1 changed file with 10 additions and 26 deletions.
36 changes: 10 additions & 26 deletions applications/proberapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,39 +211,23 @@

<plugins>
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<!-- TODO it would good to have this version only in pluginManagement in top pom -->
<version>3.8.0</version>
<executions>
<execution>
<id>copy-file</id>
<phase>pre-integration-test</phase>
<goals>
<goal>copy</goal>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<fileSets>
<fileSet>
<sourceFile>../../runtime/deployment/target/runtime-deployment-${project.version}/runtime-impl-jetty9.jar</sourceFile>
<destinationFile>${appengine.runtime.location}/runtime-impl-jetty9.jar</destinationFile>
</fileSet>
<fileSet>
<sourceFile>../../runtime/deployment/target/runtime-deployment-${project.version}/runtime-shared-jetty9.jar</sourceFile>
<destinationFile>${appengine.runtime.location}/runtime-shared-jetty9.jar</destinationFile>
</fileSet>
<fileSet>
<sourceFile>../../runtime/deployment/target/runtime-deployment-${project.version}/runtime-impl-jetty12.jar</sourceFile>
<destinationFile>${appengine.runtime.location}/runtime-impl-jetty12.jar</destinationFile>
</fileSet>
<fileSet>
<sourceFile>../../runtime/deployment/target/runtime-deployment-${project.version}/runtime-shared-jetty12.jar</sourceFile>
<destinationFile>${appengine.runtime.location}/runtime-shared-jetty12.jar</destinationFile>
</fileSet>
<fileSet>
<sourceFile>../../runtime/deployment/target/runtime-deployment-${project.version}/runtime-main.jar</sourceFile>
<destinationFile>${appengine.runtime.location}/runtime-main.jar</destinationFile>
</fileSet>
</fileSets>
<excludeArtifactIds>appengine-api-1.0-sdk,appengine-remote-api,appengine-api-stubs,appengine-testing</excludeArtifactIds>
<excludeTransitive>true</excludeTransitive>
<includeGroupIds>com.google.appengine</includeGroupIds>
<stripVersion>true</stripVersion>
<outputDirectory>${appengine.runtime.location}</outputDirectory>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit c7e7821

Please sign in to comment.