Minor cleanup

This commit is contained in:
Erik C. Thauvin 2022-12-30 20:14:10 -08:00
parent a3645937ca
commit 8e92ab430d
3 changed files with 59 additions and 56 deletions

View file

@ -16,12 +16,12 @@ plugins {
id("signing")
}
description = "URL parameters encoding and decoding"
description = "Encode and decode URL parameters"
group = "net.thauvin.erik"
version = "0.9-SNAPSHOT"
val deployDir = "deploy"
val gitHub = "ethauvin/$name"
val gitHub = "ethauvin/${rootProject.name}"
val mavenUrl = "https://github.com/$gitHub"
val publicationName = "mavenJava"
@ -42,7 +42,8 @@ java {
sonarqube {
properties {
property("sonar.projectKey", "ethauvin_$name")
property("sonar.projectName", rootProject.name)
property("sonar.projectKey", "ethauvin_${rootProject.name}")
property("sonar.organization", "ethauvin-github")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.sourceEncoding", "UTF-8")
@ -142,8 +143,8 @@ publishing {
}
}
scm {
connection.set("scm:git:git://github.com/$gitHub.git")
developerConnection.set("scm:git:git@github.com:$gitHub.git")
connection.set("scm:git://github.com/$gitHub.git")
developerConnection.set("scm:git@github.com:$gitHub.git")
url.set(mavenUrl)
}
issueManagement {

View file

@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
@ -10,8 +12,8 @@
<artifactId>urlencoder</artifactId>
<version>0.9-SNAPSHOT</version>
<name>urlencoder</name>
<description>URL parameters encoding and decoding</description>
<url>https://github.com/ethauvin/lib</url>
<description>Encode and decode URL parameters</description>
<url>https://github.com/ethauvin/urlencoder</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
@ -32,13 +34,13 @@
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ethauvin/lib.git</connection>
<developerConnection>scm:git:git@github.com:ethauvin/lib.git</developerConnection>
<url>https://github.com/ethauvin/lib</url>
<connection>scm:git://github.com/ethauvin/urlencoder.git</connection>
<developerConnection>scm:git@github.com:ethauvin/urlencoder.git</developerConnection>
<url>https://github.com/ethauvin/urlencoder</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ethauvin/lib/issues</url>
<url>https://github.com/ethauvin/urlencoder/issues</url>
</issueManagement>
<dependencies>
<dependency>

View file

@ -50,7 +50,7 @@ object UrlEncoder {
// see https://www.rfc-editor.org/rfc/rfc3986#page-13
private fun Char.isUnreserved(): Boolean {
return if (this > '~') false else unreservedChars.get(this.code)
return this <= '~' && unreservedChars.get(code)
}
private fun StringBuilder.appendEncodedDigit(digit: Int) {
@ -122,7 +122,7 @@ object UrlEncoder {
/**
* Transforms a provided [String] object into a new string, containing only valid URL characters in the UTF-8
* encoding. Letters, numbers, unreserved (<code>"_-!.~'()*"</code>) and allowed characters are left intact.
* encoding. Letters, numbers, unreserved (`_-!.~'()*`) and allowed characters are left intact.
*/
@JvmStatic
fun encode(source: String, vararg allow: Char): String {