Last active
May 25, 2018 19:56
-
-
Save michaelajr/bd5bb139649cbe9227d254a7d9c71e79 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencyManagement> | |
<dependencies> | |
<!-- Logging --> | |
<dependency> | |
<groupId>com.eoniantech.build</groupId> | |
<artifactId>slf4j-bom</artifactId> | |
<version>1.8.0-beta2</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.eoniantech.build</groupId> | |
<artifactId>logback-bom</artifactId> | |
<version>1.3.0-alpha4</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.eoniantech.build</groupId> | |
<artifactId>logback-contrib-bom</artifactId> | |
<version>0.1.5</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment