diff --git a/LICENSE.txt b/LICENSE.txt index 2fadd27..15551d4 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2020, Erik C. Thauvin (erik@thauvin.net) +Copyright (c) 2020-2021, Erik C. Thauvin (erik@thauvin.net) All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index d353d4a..f8da18d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![release](https://img.shields.io/github/release/ethauvin/isgd-shorten.svg)](https://github.com/ethauvin/isgd-shorten/releases/latest) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/isgd-shorten/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/isgd-shorten) [![Download](https://api.bintray.com/packages/ethauvin/maven/isgd-shorten/images/download.svg)](https://bintray.com/ethauvin/maven/isgd-shorten/_latestVersion) +[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![release](https://img.shields.io/github/release/ethauvin/isgd-shorten.svg)](https://github.com/ethauvin/isgd-shorten/releases/latest) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/isgd-shorten/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/isgd-shorten) [![Known Vulnerabilities](https://snyk.io/test/github/ethauvin/isgd-shorten/badge.svg?targetFile=pom.xml)](https://snyk.io/test/github/ethauvin/isgd-shorten?targetFile=pom.xml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ethauvin_isgd-shorten&metric=alert_status)](https://sonarcloud.io/dashboard?id=ethauvin_isgd-shorten) [![Build Status](https://travis-ci.com/ethauvin/isgd-shorten.svg?branch=master)](https://travis-ci.com/ethauvin/isgd-shorten) [![CircleCI](https://circleci.com/gh/ethauvin/isgd-shorten/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/isgd-shorten/tree/master) diff --git a/build.gradle.kts b/build.gradle.kts index 2c687ed..2137fc5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,9 +8,9 @@ plugins { id("com.github.ben-manes.versions") version "0.38.0" id("io.gitlab.arturbosch.detekt") version "1.16.0" id("net.thauvin.erik.gradle.semver") version "1.0.4" - id("org.jetbrains.dokka") version "1.4.30" - id("org.jetbrains.kotlin.jvm") version "1.4.31" - id("org.jetbrains.kotlin.kapt") version "1.4.31" + id("org.jetbrains.dokka") version "1.4.32" + id("org.jetbrains.kotlin.jvm") version "1.5.0" + id("org.jetbrains.kotlin.kapt") version "1.5.0" id("org.sonarqube") version "3.1.1" } @@ -28,7 +28,6 @@ var semverProcessor = "net.thauvin.erik:semver:1.2.0" repositories { mavenCentral() - jcenter() // needed for dokka } dependencies { diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index b744f3e..bac0194 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -1,10 +1,10 @@ plugins { - id("org.jetbrains.kotlin.jvm") version "1.4.30" + id("org.jetbrains.kotlin.jvm") version "1.5.0" id("com.github.ben-manes.versions") version "0.38.0" application } -// ./gradlew run --args='https://wwwcom.example. https://is.gd/Pt2sET' +// ./gradlew run --args='https://www.example.com https://is.gd/Pt2sET' // ./gradlew runJava --args='https://www.example.com https://is.gd/Pt2sET' repositories { @@ -13,7 +13,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:isgd-shorten:0.9.1") + implementation("net.thauvin.erik:isgd-shorten:0.9.2") } application { diff --git a/examples/gradle/wrapper/gradle-wrapper.properties b/examples/gradle/wrapper/gradle-wrapper.properties index 442d913..f371643 100644 --- a/examples/gradle/wrapper/gradle-wrapper.properties +++ b/examples/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 442d913..f371643 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/pom.xml b/pom.xml index 0da8e61..ae338ff 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + @@ -39,7 +39,7 @@ org.jetbrains.kotlin kotlin-stdlib-jdk8 - 1.4.30 + 1.5.0 compile diff --git a/src/main/kotlin/net/thauvin/erik/isgd/Isgd.kt b/src/main/kotlin/net/thauvin/erik/isgd/Isgd.kt index c9a9afe..c812161 100644 --- a/src/main/kotlin/net/thauvin/erik/isgd/Isgd.kt +++ b/src/main/kotlin/net/thauvin/erik/isgd/Isgd.kt @@ -1,7 +1,7 @@ /* * Isgd.kt * - * Copyright (c) 2020, Erik C. Thauvin (erik@thauvin.net) + * Copyright (c) 2020-2021, Erik C. Thauvin (erik@thauvin.net) * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/test/kotlin/net/thauvin/erik/isgd/IsgdTest.kt b/src/test/kotlin/net/thauvin/erik/isgd/IsgdTest.kt index 399030b..4c58737 100644 --- a/src/test/kotlin/net/thauvin/erik/isgd/IsgdTest.kt +++ b/src/test/kotlin/net/thauvin/erik/isgd/IsgdTest.kt @@ -1,7 +1,7 @@ /* * IsgdTest.kt * - * Copyright (c) 2020, Erik C. Thauvin (erik@thauvin.net) + * Copyright (c) 2020-2021, Erik C. Thauvin (erik@thauvin.net) * All rights reserved. * * Redistribution and use in source and binary forms, with or without