forked from ChargeTimeEU/Java-OCA-OCPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (36 loc) · 802 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
/*
* This file was generated by the Gradle 'init' task.
*/
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.8"
}
}
allprojects {
group = 'eu.chargetime.ocpp'
version = '1.0.2'
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: "com.github.sherter.google-java-format"
repositories {
mavenLocal()
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
sourceCompatibility = '1.8'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
}