Skip to content

Commit

Permalink
fixes integrations dependencies (#1125)
Browse files Browse the repository at this point in the history
* remove duplicate

* exclude org.json inside integration
  • Loading branch information
jetersen authored Oct 4, 2019
1 parent 221d390 commit 7e04de3
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions integrations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,25 @@
<groupId>io.jenkins</groupId>
<artifactId>configuration-as-code</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.jenkins</groupId>
<artifactId>configuration-as-code</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<exclusions>
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -458,11 +470,6 @@
<artifactId>okio</artifactId>
<version>1.13.0</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
Expand Down

0 comments on commit 7e04de3

Please sign in to comment.