-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (23 loc) · 711 Bytes
/
build.gradle
File metadata and controls
28 lines (23 loc) · 711 Bytes
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
}
}
apply plugin: 'java'
apply plugin: "com.google.protobuf"
apply plugin: 'idea'
group 'com.github.simplesteph.protobuf'
version '1.0-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.19.1'
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.19.1'
implementation 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}