Skip to content

Instantly share code, notes, and snippets.

@michaelajr
Last active May 25, 2018 19:56
Show Gist options
  • Save michaelajr/bd5bb139649cbe9227d254a7d9c71e79 to your computer and use it in GitHub Desktop.
Save michaelajr/bd5bb139649cbe9227d254a7d9c71e79 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
<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