No description
Find a file
dependabot[bot] 63573a8974
Bump org.jetbrains.kotlinx:kotlinx-serialization-json
Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.6.3 to 1.7.1.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.6.3...v1.7.1)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-11 19:37:41 +00:00
.github Fix previous commit... 2024-05-30 11:58:02 +02:00
.idea Adjustments for getting grades from Hebe API 2024-07-03 11:00:49 +02:00
docs Make snapshot repo clickable 2023-05-28 23:03:20 +02:00
gradle/wrapper Update dependencies 2023-08-24 23:30:56 +02:00
sdk Reroute exams to hebe 2024-07-11 21:23:46 +02:00
sdk-hebe Hebe: add subjects 2024-07-11 21:22:49 +02:00
sdk-scrapper Add missing AutoryzacjaPesel mapping 2024-06-12 20:55:24 +02:00
.editorconfig Make possible to switch between api endpoints dynamically 2024-05-08 01:12:35 +02:00
.gitignore Remove getStudents() API 2023-04-15 22:39:36 +02:00
build.gradle Bump org.jetbrains.kotlinx:kotlinx-serialization-json 2024-07-11 19:37:41 +00:00
gradlew Update dependencies 2023-08-24 23:30:56 +02:00
gradlew.bat Update gradle wrapper to 8.1 2023-04-15 22:12:33 +02:00
jitpack.yml Add jdk config for jitpack 2022-08-01 23:22:24 +02:00
LICENSE Update date in LICENSE file (#149) 2023-01-01 20:30:28 +01:00
README.md Make snapshot repo clickable 2023-05-28 23:03:20 +02:00
settings.gradle Update dependencies 2024-03-19 17:34:31 +01:00

VULCAN UONET+ SDK

GitHub Workflow status Codecov branch Maven Central Sonatype Nexus (Snapshots) JitPack License Discord

Unified way of retrieving data from the UONET+ register through mobile api and scraping api

Features

Check it out full public api and test examples.

Documentation

Check wiki page.

Download

allprojects {
    repositories {
        // for stable releases
        mavenCentral()

        // for snapshots
        maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }

        // for everything
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'io.github.wulkanowy:sdk:<version>'
}