Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 840 Bytes

INSTALLATION.md

File metadata and controls

49 lines (37 loc) · 840 Bytes

📘 Installation

The library is published on jitpack.io.

The custom domain com.open-meteo used as group id is an alias to com.github.open-meteo.

Gradle

  1. Add the JitPack repository to your root build.gradle file:
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  1. Add the dependency:
dependencies {
	implementation 'com.open-meteo:open-meteo-api-kotlin:0.7.1-beta.1'
}

Maven

  1. Add the JitPack repository to your build file:
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>
  1. Add the dependency:
<dependency>
	<groupId>com.open-meteo</groupId>
	<artifactId>open-meteo-api-kotlin</artifactId>
	<version>0.7.1-beta.1</version>
</dependency>