Skip to content

Commit

Permalink
[JENKINS-15846] Deadlock during Maven builds Parsing POM step
Browse files Browse the repository at this point in the history
Do not use anymore shaded version of wagon-http as it we can control commons-logging version

Originally-Committed-As: 13ae5c793663976587a06d3dca585f7559173efb
  • Loading branch information
olamy committed Jun 29, 2013
1 parent 96cc49a commit 3d7f556
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions pom.xml
Expand Up @@ -218,21 +218,20 @@ THE SOFTWARE.
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http</artifactId>
<version>${wagonVersion}</version>
<classifier>shaded</classifier>
<exclusions>
<exclusion>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http-shared4</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.2.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
Expand Down

0 comments on commit 3d7f556

Please sign in to comment.