Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 854 Bytes

File metadata and controls

32 lines (22 loc) · 854 Bytes

open-source-parent

Maven parent for Open Source projects

How to use it?

  1. Add the JitPack repository to your build file
  <repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
  </repositories>
  1. Configure parent on your build file
  <parent>
    <groupId>io.github.ascentio-tech</groupId>
    <artifactId>open-source-parent</artifactId>
    <version>master-SNAPSHOT</version>
  </parent>

The example is using master-SNAPSHOT which points to master branch. You could also use any sha1 revision, branch or tag as version.

  1. Test it: mvn package