Skip to content

Commit

Permalink
rev
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Nov 22, 2023
1 parent 1767b9a commit f33e362
Show file tree
Hide file tree
Showing 14 changed files with 57 additions and 58 deletions.
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions backup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -27,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
10 changes: 5 additions & 5 deletions bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import dev.teogor.winds.api.model.Version
* limitations under the License.
*/

import dev.teogor.winds.api.model.createVersion

plugins {
id("java-platform")
alias(libs.plugins.winds)
Expand All @@ -28,11 +30,9 @@ winds {

artifactIdElements = 1

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}

defineBoM()
}
Expand Down
14 changes: 8 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ plugins {
alias(libs.plugins.ksp) apply false
alias(libs.plugins.about.libraries) apply false

alias(libs.plugins.vanniktech.maven)
alias(libs.plugins.winds)
alias(libs.plugins.dokka)
alias(libs.plugins.spotless)
alias(libs.plugins.api.validator)
// alias(libs.plugins.winds) apply true
id("dev.teogor.winds")

alias(libs.plugins.vanniktech.maven) apply true
alias(libs.plugins.dokka) apply true
alias(libs.plugins.spotless) apply true
alias(libs.plugins.api.validator) apply true

id("dev.teogor.ceres.docs")
}
Expand All @@ -53,8 +55,8 @@ winds {
description = "\uD83E\uDE90 Ceres is a comprehensive Android development framework designed to streamline your app development process. Powered by the latest technologies like Jetpack Compose, Hilt, Coroutines, and Flow, Ceres empowers developers to build modern and efficient Android applications."

groupId = "dev.teogor.ceres"

artifactIdElements = 2
url = "https://source.teogor.dev/ceres"

inceptionYear = 2022

Expand Down
9 changes: 4 additions & 5 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -27,10 +28,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
9 changes: 4 additions & 5 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
9 changes: 4 additions & 5 deletions firebase/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
9 changes: 4 additions & 5 deletions framework/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ kotlin-poet = "1.14.2"
kotlin-xml-builder = "1.9.1"
kotlinx-serialization-core = "1.6.0"
jdom2 = "2.0.6.1"
winds = "1.0.0-alpha02"
winds = "1.0.0-alpha03"

[libraries]
about-libraries-core = { group = "com.mikepenz", name = "aboutlibraries-core", version.ref = "aboutLibraries" }
Expand Down
9 changes: 4 additions & 5 deletions monetisation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
9 changes: 4 additions & 5 deletions navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import com.vanniktech.maven.publish.SonatypeHost
import dev.teogor.ceres.gradle.plugins.CeresLibraryExtension
import dev.teogor.ceres.gradle.plugins.setModuleCoordinates
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -29,10 +30,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
9 changes: 4 additions & 5 deletions screen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pluginManagement {
includeBuild("plugin/")
includeBuild("E:\\Teogor\\dev\\.github\\winds")
repositories {
google()
mavenCentral()
Expand Down
9 changes: 4 additions & 5 deletions ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
import dev.teogor.winds.api.model.Version
import dev.teogor.winds.api.model.createVersion

plugins {
alias(libs.plugins.winds)
Expand All @@ -26,10 +27,8 @@ winds {

artifactIdElements = 2

version = Version(
major = 1,
minor = 0,
patch = 0,
).setAlphaRelease(1)
version = createVersion(1, 0, 0) {
alphaRelease(1)
}
}
}

0 comments on commit f33e362

Please sign in to comment.