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

Commit

Permalink
Merge pull request #14 from bdellegrazie/exclude-log4j-impl
Browse files Browse the repository at this point in the history
Avoid forcing the SLF4J implementation - leave that to user
  • Loading branch information
matt-rich committed Nov 8, 2016
2 parents 9b2a161 + a954052 commit 0e8fbbd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions raml-generator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
<dependency>
<groupId>org.raml</groupId>
<artifactId>raml-parser</artifactId>
<exclusions>
<!-- do not force an SLF4J implementation -->
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion raml-maven-plugin-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>uk.gov.justice.maven</groupId>
<artifactId>raml-maven-plugin-it</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.2.0-SNAPSHOT</version>

<!-- TODO add parent after extracting framewrok specific parent pom that does not contain raml-maven-plugin configuration-->
<!-- remember to manually update version -->
Expand Down
7 changes: 7 additions & 0 deletions raml-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
<dependency>
<groupId>org.raml</groupId>
<artifactId>raml-parser</artifactId>
<exclusions>
<!-- do not force an SLF4J implementation -->
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 0e8fbbd

Please sign in to comment.