2
0
mirror of synced 2025-02-23 23:08:14 +00:00
mobile/misc/androidstudio/build.gradle
Hana Kim 274da16109 misc/androidstudio: release 0.2.13
$ docker run --rm -u root -v "$PWD":/home/gradle/project \
   -w /home/gradle/project gradle:latest gradle publishPlugins

gradle version 4.7

Change-Id: I5c86fed85c0e9896a413011fd04ce600743b8f54
Reviewed-on: https://go-review.googlesource.com/112616
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
2018-05-10 18:31:09 +00:00

45 lines
806 B
Groovy

apply plugin: 'groovy'
// Many android users still use JDK7.
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.8"
}
}
apply plugin: "com.gradle.plugin-publish"
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile 'junit:junit:4.11'
}
version = '0.2.13'
pluginBundle {
website = 'https://golang.org/x/mobile'
vcsUrl = 'https://golang.org/x/mobile'
description = 'Plugin for gomobile projects'
plugins {
gobindPlugin {
id = 'org.golang.mobile.bind'
displayName = 'gomobile bind plugin'
tags = ['golang', 'gomobile', 'gobind']
}
}
}