Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 443 Bytes

maven.md

File metadata and controls

21 lines (18 loc) · 443 Bytes

For Maven to get a Git project into your build: Step 1: Add the JitPack repository to your build file

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Step 2: Add the dependency

	<dependency>
	    <groupId>com.github.JahidHasanCO</groupId>
	    <artifactId>NetworkUsage</artifactId>
	    <version>1.0.0</version>
	</dependency>