Skip to content

teogor/winds

Winds πŸƒ

Winds aims to provide a simple and efficient way to build and publish libraries and applications for multiple platforms. It is designed to be flexible and extensible, so that it can be used to build a wide variety of libraries and applications, from simple utility libraries to complex composable libraries and applications.

Features

  • Simple and efficient build process
  • Flexible and extensible library structure
  • Support for multiple publication formats (Maven, AAR, etc.)
  • Automatic documentation generation

Requirements

  • Android Gradle Plugin 7.0+
  • Kotlin Gradle Plugin 1.7+

Usage

Plugin implementation

To implement the Winds plugin, add the following plugin ID to your build.gradle file:

plugins {
  id "dev.teogor.winds" version "1.0.1"
}

Plugin usage

Once you have implemented the Winds plugin, you can use it to build and publish your library or application as follows:

  1. Configure the Winds plugin in your build.gradle file.
  2. Build your library or application using the gradlew build command.
  3. Publish your library or application using the gradlew publish command.

Example build.gradle file

The following is an example build.gradle file that uses the Winds plugin to build and publish a library:

plugins {
  id "dev.teogor.winds" version "1.0.1"
}

winds {
  buildFeatures {
    mavenPublish = true
    docsGenerator = true
  }

  mavenPublish {
    groupId = "my.group.id"
    artifactId = "my-library"
    version = "1.0.0"
  }
}

Find this repository useful? 🩷

  • Support it by joining stargazers for this repository. πŸ“
  • Get notified about my new projects by following me on GitHub. πŸ’»
  • Interested in sponsoring me? Support me on GitHub! 🀝

License

  Designed and developed by 2023 teogor (Teodor Grigor)

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.