increased version + updated dependencies

master
Robinson 2022-12-31 11:50:33 +01:00
parent ef9ef92c19
commit b41e5397ef
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 10 additions and 9 deletions

4
README.md Executable file → Normal file
View File

@ -20,7 +20,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>OS</artifactId> <artifactId>OS</artifactId>
<version>1.0</version> <version>1.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -30,7 +30,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:OS:1.0") implementation("com.dorkbox:OS:1.1")
} }
``` ```

View File

@ -26,10 +26,10 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show th
plugins { plugins {
id("com.dorkbox.GradleUtils") version "2.16" id("com.dorkbox.GradleUtils") version "3.4.6"
id("com.dorkbox.Licensing") version "2.12" id("com.dorkbox.Licensing") version "2.17"
id("com.dorkbox.VersionUpdate") version "2.4" id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.12" id("com.dorkbox.GradlePublish") version "1.13"
kotlin("jvm") version "1.6.10" kotlin("jvm") version "1.6.10"
} }
@ -38,7 +38,7 @@ object Extras {
// set for the project // set for the project
const val description = "Information about the system, Java runtime, OS, Window Manager, and Desktop Environment." const val description = "Information about the system, Java runtime, OS, Window Manager, and Desktop Environment."
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.0" const val version = "1.1"
// set as project.ext // set as project.ext
const val name = "OS" const val name = "OS"
@ -86,6 +86,7 @@ dependencies {
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
} }
publishToSonatype { publishToSonatype {
groupId = Extras.group groupId = Extras.group
artifactId = Extras.id artifactId = Extras.id

Binary file not shown.

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@ -29,7 +29,7 @@ object OS {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "1.0" const val version = "1.1"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information