mirror of
https://github.com/go-i2p/gomobile-java.git
synced 2025-07-13 11:54:44 -04:00

Currently version 0.2.1 I messed up previous versions and plugins.gradle.org doesn't let me remove the bad versions. Change-Id: I9eef512633b461ff5a7fcbe11a3e104efb250d61 Reviewed-on: https://go-review.googlesource.com/12538 Reviewed-by: David Crawshaw <crawshaw@golang.org>
40 lines
714 B
Groovy
40 lines
714 B
Groovy
apply plugin: 'groovy'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath "com.gradle.publish:plugin-publish-plugin:0.9.1"
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.gradle.plugin-publish"
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile localGroovy()
|
|
|
|
testCompile 'junit:junit:4.11'
|
|
}
|
|
|
|
pluginBundle {
|
|
website = 'https://golang.org'
|
|
vcsUrl = 'https://github.com/golang/mobile'
|
|
description = 'Plugin for gomobile projects (beta)'
|
|
version = '0.2.1'
|
|
|
|
plugins {
|
|
gobindPlugin {
|
|
id = 'org.golang.mobile.bind'
|
|
displayName = 'gomobile bind plugin'
|
|
tags = ['golang', 'gomobile', 'gobind']
|
|
}
|
|
}
|
|
}
|