-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.2 KB
/
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
45
46
47
48
49
50
51
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.4.0'
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'com.novoda.bintray-release'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '0.1.1'
jar {
manifest {
attributes 'Implementation-Title': 'xinra Nucleus Interface Generator',
'Implementation-Version': version
}
}
repositories {
mavenCentral()
maven { url "http://dl.bintray.com/xinra/nucleus" }
}
dependencies {
compile 'com.squareup:javapoet:1.7.0'
compile 'com.google.guava:guava:19.0'
compile 'org.codehaus.groovy:groovy:2.4.7'
compile 'com.xinra.nucleus:nucleus-apt:0.1.1'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
publish {
userOrg = 'xinra'
repoName = 'nucleus'
groupId = 'com.xinra.nucleus'
artifactId = 'nucleus-interface-generator'
publishVersion = '0.1.1'
licences = ['BSD 3-Clause']
desc = 'An annotation processor that generates interfaces for Java classes'
website = 'https://github.com/xinra-nucleus/nucleus-interface-generator'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}