Skip to content

Commit 07584ac

Browse files
committed
Bump versions
1 parent c24dfbd commit 07584ac

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ buildscript {
22
Properties versionProperties = new Properties()
33
versionProperties.load(new FileInputStream("$project.rootDir/version.properties"))
44

5-
ext.kotlin_version = '1.3.50'
6-
ext.agp_version = '4.0.1'
5+
ext.kotlin_version = '2.0.0'
6+
ext.agp_version = '8.7.1'
77
ext.plugin_version = versionProperties.getProperty("version")
88

99
repositories {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

plugin/build.gradle

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import groovy.json.JsonBuilder
22
import org.gradle.util.VersionNumber
33

44
plugins {
5-
id 'com.gradle.plugin-publish' version '0.14.0'
6-
id "org.gradle.test-retry" version "1.2.0"
5+
id 'com.gradle.plugin-publish' version '1.3.0'
6+
id "org.gradle.test-retry" version "1.6.0"
77
}
88

99
apply plugin: "java-gradle-plugin"
@@ -12,12 +12,15 @@ apply plugin: "groovy"
1212
apply plugin: "kotlin"
1313

1414
gradlePlugin {
15+
website = 'https://github.com/mozilla/rust-android-gradle'
16+
vcsUrl = 'https://github.com/mozilla/rust-android-gradle.git'
1517
plugins {
1618
rustAndroidGradlePlugin {
1719
id = 'org.mozilla.rust-android-gradle.rust-android'
1820
implementationClass = 'com.nishtahir.RustAndroidPlugin'
1921
displayName = 'Plugin for building Rust with Cargo in Android projects'
2022
description = 'A plugin that helps build Rust JNI libraries with Cargo for use in Android projects.'
23+
tags = ['rust', 'cargo', 'android']
2124
}
2225
}
2326
}
@@ -68,13 +71,6 @@ compileTestKotlin {
6871
kotlinOptions.jvmTarget = "1.8"
6972
}
7073

71-
pluginBundle {
72-
website = 'https://github.com/mozilla/rust-android-gradle'
73-
vcsUrl = 'https://github.com/mozilla/rust-android-gradle.git'
74-
tags = ['rust', 'cargo', 'android']
75-
}
76-
77-
7874
// Generate a json file that contains the matrix of Gradle and AGP versions to test against.
7975
def generatedResources = "$buildDir/generated-resources/main"
8076
tasks.register('generateVersions') {

0 commit comments

Comments
 (0)