-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
44 lines (35 loc) · 1017 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.6"
}
}
repositories {
jcenter()
}
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'groovy'
dependencies {
compile gradleApi()
compile localGroovy()
// compile 'org.codehaus.groovy:groovy-all:2.3.11'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
group 'com.github.linsea'
version '0.2.1'
pluginBundle {
website = 'https://github.com/linsea/native-dependencies-plugin'
vcsUrl = 'https://github.com/linsea/native-dependencies-plugin'
description = 'a native(.so) dependencies resolver for android'
tags = ['native', '.so', 'dependencies', 'android', 'dependency']
plugins {
nativeDependenciesPlugin {
id = 'com.github.linsea.native-dependencies'
displayName = 'Android native dependencies resolver'
}
}
}