Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cosic committed Dec 10, 2023
1 parent d394e5f commit b35f9ca
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# 0.3.0

##### Add
* Support of Gradle 8+ and Android Gradle Plugin 8+.


# 0.2.2

Fix:
##### Fix
* Add mustRunAfter assemble and bundle tasks without side effect on configuration cache


# 0.2.1

Fix:
##### Fix
* ReleaseNotes doesn't work #1


Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# RuStore Publishing

![Version](https://img.shields.io/badge/GradlePortal-0.2.2-green.svg)
![Version](https://img.shields.io/badge/Gradle-7.*-pink.svg)
![Version](https://img.shields.io/badge/GradlePortal-0.3.0-green.svg)
![Version](https://img.shields.io/badge/Gradle-8.*-pink.svg)
[![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

The plugin allows you to publish the android release *.apk build file to the RuStore.

For publication the plugin used [Rustore API](https://help.rustore.ru/rustore/for_developers/work_with_RuStore_API/publish_RuStore_API)

**Table of contents**
# Table of contents
<!-- TOC -->
- [Features](#features)
- [Support versions](#support-versions)
Expand Down Expand Up @@ -45,9 +45,10 @@ The following features are missing:
The Android Gradle Plugin often changes the Variant API,
so a different version of AGP corresponds to a specific version of the current plugin

| AGP | Plugin |
|---------|--------|
| 7.+ | latest |
| AGP | Plugin |
|-----|--------|
| 7.+ | 0.2.2 |
| 8.+ | 0.3.0 |

# Adding the plugin to your project

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test-junitJupiterParams = "org.junit.jupiter:junit-jupiter-params:5.7.0"
dokka = { id = "org.jetbrains.dokka", version = "1.8.10" }
dcendents = { id = "com.github.dcendents", version = "plugin:2.1" }
bintray = { id = "com.jfrog.bintray", version = "1.8.5" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "1.2.1" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "0.15.0" }
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
benManesVersions = { id = "com.github.ben-manes.versions", version = "0.46.0" }
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
15 changes: 8 additions & 7 deletions plugin/config/gradle-portal.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply from: "$projectDir/config/publish-methods.gradle"
group = GROUP
version = getVersionName()

//pluginBundle {
// description = GRADLE_PORTAL_DESCRIPTION
// website = GRADLE_PORTAL_URL
// vcsUrl = GRADLE_PORTAL_SCM_URL
// tags = ["android", "rustore", "publishing", "deployment", "apps", "mobile", "gradle", "plugin"]
//}
pluginBundle { // Remove for `com.gradle.plugin-publish` > 1.0 version
description = GRADLE_PORTAL_DESCRIPTION
website = GRADLE_PORTAL_URL
vcsUrl = GRADLE_PORTAL_SCM_URL
tags = ["android", "rustore", "publishing", "deployment", "mobile"]
}

gradlePlugin {
website = POM_SCM_URL
Expand All @@ -18,7 +18,8 @@ gradlePlugin {
id = GRADLE_PORTAL_ARTIFACT_ID
displayName = GRADLE_PORTAL_NAME
description = GRADLE_PORTAL_DESCRIPTION
tags.set(["android", "rustore", "publishing", "deployment"])
// Uncomment for `com.gradle.plugin-publish` > 1.0 version
// tags.set(["android", "rustore", "publishing", "deployment"])
implementationClass = GRADLE_PORTAL_IMPLEMENTATION_CLASS
}
}
Expand Down
4 changes: 2 additions & 2 deletions plugin/config/maven-publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ publishing {
version = getVersionName()

from components.java
// artifact sourceJar
// artifact javadocJar
artifact sourceJar // Remove for `com.gradle.plugin-publish` > 1.0 version
artifact javadocJar // Remove for `com.gradle.plugin-publish` > 1.0 version

pom {
name = POM_NAME
Expand Down

0 comments on commit b35f9ca

Please sign in to comment.