-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (31 loc) · 1.17 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
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'gilbert' at '19-8-10 下午1:24' with Gradle 2.7
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/2.7/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
description = "IDL接口文档生成器工程"
sourceCompatibility = 1.8
jar {
baseName = 'idl-doc-generator'
version = '0.0.4'
}
// In this section you declare where to find the dependencies of your project
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile('com.google.code.gson:gson:2.8.5')
// SDK依赖包
compile('com.google.auto.service:auto-service:1.0-rc3')
compile('com.google.auto:auto-common:0.8')
compile('com.squareup:javapoet:1.8.0')
// 测试使用
compile('com.google.protobuf:protobuf-java:3.6.1')
compile('com.googlecode.protobuf-java-format:protobuf-java-format:1.4')
}