Browse Source

Updated version numbers.

pull/188/head v2.2.3-SNAPSHOT
weisj 5 years ago
parent
commit
42ff4bda24
  1. 13
      README.md
  2. 4
      build.gradle.kts
  3. 2
      gradle.properties

13
README.md

@ -26,19 +26,12 @@ This project is available on Maven Central:
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-core</artifactId>
<version>[2.2.1,)</version>
</dependency>
<dependency>
<!-- For the themes-->
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-theme</artifactId>
<version>[2.2.1,)</version>
<version>2.2.2</version>
</dependency>
````
### Gradle
````kotlin
implementation("com.github.weisj:darklaf-core:[2.2.1,)")
implementation("com.github.weisj:darklaf-theme:[2.2.1,)") // For the themes
implementation("com.github.weisj:darklaf-core:2.2.2")
````
You can also use the latest nightly build.
@ -165,7 +158,7 @@ Here is a list of things that currently are not finished or need refinement. Thi
This also needs to have a bundle created in the first place.
# Artifacts
- Group ID: `com.github.weisj`
- Version: `2.2.1`
- Version: `2.2.2`
- Artifact IDs:
- `darklaf-core` The LaF itself. Include this in your project to use the LaF. Includes all other artifacts.
- `darklaf-theme` The themes to use with the LaF.

4
build.gradle.kts

@ -32,7 +32,9 @@ releaseParams {
svnDistEnabled.set(false)
sitePreviewEnabled.set(false)
release.set(isRelease)
rcTag.set("v$projectVersion${releaseParams.snapshotSuffix}")
if (!isRelease) {
rcTag.set("v$projectVersion${releaseParams.snapshotSuffix}")
}
nexus {
mavenCentral()
}

2
gradle.properties

@ -6,7 +6,7 @@ kotlin.code.style = official
systemProp.org.gradle.internal.publish.checksums.insecure = true
# Darklaf version
darklaf.version = 2.2.2
darklaf.version = 2.2.3
# Plugins
shadow.version = 5.1.0

Loading…
Cancel
Save