обновление gradle и README.MD

This commit is contained in:
2020-02-05 22:19:51 +03:00
parent adfee4a338
commit f59ae042b7
2 changed files with 12 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
![version: v1.0-RC](https://img.shields.io/badge/version-v1.0--RC-a0a.svg?style=flat)
![coverage: 81%](https://img.shields.io/badge/coverage-81%25-yellowgreen.svg?style=flat)
Библиотека для работы с NBT (Named Binary Tag) в отрыве от Minecraft.
Библиотека для работы с NBT (Named Binary Tag)
## Подключение к проекту

View File

@@ -1,9 +1,16 @@
plugins {
id 'java'
id 'jacoco'
}
wrapper {
gradleVersion = '5.3'
distributionType = Wrapper.DistributionType.BIN
}
group = 'mc-project'
version = '1.0-RC'
apply plugin: 'java'
apply plugin: 'jacoco'
repositories {
mavenLocal()
mavenCentral()
@@ -41,5 +48,5 @@ test {
}
jacoco {
toolVersion = '0.8.3'
toolVersion = '0.8.5'
}