Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Exclude jopt-simple dependency from raml-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Rich committed Nov 8, 2016
1 parent 0e8fbbd commit 4a83ed9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uk.gov.justice</groupId>
<artifactId>parent-pom</artifactId>
<version>1.6.10</version>
<artifactId>maven-parent-pom</artifactId>
<version>1.1.0</version>
</parent>

<groupId>uk.gov.justice.maven</groupId>
Expand All @@ -27,8 +27,8 @@
<dependencies>
<dependency>
<groupId>uk.gov.justice</groupId>
<artifactId>common-bom</artifactId>
<version>1.6.10</version>
<artifactId>maven-common-bom</artifactId>
<version>1.3.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
28 changes: 16 additions & 12 deletions raml-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@
</build>

<dependencies>
<!-- dependencies to annotations -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>uk.gov.justice.maven</groupId>
<artifactId>raml-generator-core</artifactId>
Expand All @@ -60,24 +73,16 @@
<artifactId>maven-plugin-api</artifactId>
</dependency>

<!-- dependencies to annotations -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>3.3.3</version>
<version>3.3.9</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.3.3</version>
<version>3.3.9</version>
</dependency>

<dependency>
Expand All @@ -93,7 +98,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-aether-provider</artifactId>
<version>3.3.3</version>
<version>3.3.9</version>
<scope>test</scope>
</dependency>

Expand All @@ -108,7 +113,6 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down

0 comments on commit 4a83ed9

Please sign in to comment.