Skip to content

Commit

Permalink
add slf4j-simple to runtime classpath, extracted slf4j version into a…
Browse files Browse the repository at this point in the history
… maven property declaration
  • Loading branch information
jenskreidler committed Jul 30, 2019
1 parent 7fdb04a commit e7b3231
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion jax-maven-plugin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<properties>
<jaxb.generated>${project.build.directory}/generated-sources/jaxb</jaxb.generated>
<version.slf4j>1.7.25</version.slf4j>
</properties>

<dependencies>
Expand All @@ -25,7 +26,14 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>${version.slf4j}</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${version.slf4j}</version>
<scope>runtime</scope>
</dependency>

Expand Down

0 comments on commit e7b3231

Please sign in to comment.