updated libraries and version

connection_type_change
Robinson 2022-06-02 01:27:57 +02:00
parent 25acf47dda
commit 0f6afbe911
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId>
<version>2.14</version>
<version>2.15</version>
</dependency>
</dependencies>
```
@ -30,7 +30,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:NetworkUtils:2.14")
implementation("com.dorkbox:NetworkUtils:2.15")
}
```

View File

@ -27,9 +27,9 @@ gradle.startParameter.warningMode = WarningMode.All
plugins {
id("com.dorkbox.GradleUtils") version "2.16"
id("com.dorkbox.GradleUtils") version "2.17"
id("com.dorkbox.Licensing") version "2.12"
id("com.dorkbox.VersionUpdate") version "2.4"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.12"
kotlin("jvm") version "1.6.10"
@ -39,7 +39,7 @@ object Extras {
// set for the project
const val description = "Utilities for managing network configurations, IP/MAC address conversion, and ping (via OS native commands)"
const val group = "com.dorkbox"
const val version = "2.14"
const val version = "2.15"
// set as project.ext
const val name = "NetworkUtils"

View File

@ -30,7 +30,7 @@ internal object Common {
/**
* Gets the version number.
*/
const val version = "2.14"
const val version = "2.15"
val OS_LINUX: Boolean
val OS_WINDOWS: Boolean