What's Changed
- actually fix #20 by @notcancername in #26
- v1.3.6 by @maxmielchen in #27
New Contributors
- @notcancername made their first contribution in #26
Full Changelog: v1.3.5...v1.3.6
Installation
Maven
POM
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.untisapi</groupId>
<artifactId>untis4j</artifactId>
<version>v1.3.6</version>
</dependency>
</dependencies>Gradle
Groovy DSL
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.untisapi:v1.3.6'
}Kotlin DSL
repositories {
maven { url='https://jitpack.io' }
}
dependencies {
implementation ("com.github.untisapi:v1.3.6")
}