-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
51 lines (43 loc) · 1.49 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
group 'io.sniffy.influxdb'
version '0.0.3'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
}
}
allprojects {
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'com.bmuschko.nexus'
modifyPom {
project {
name 'Sniffy InfluxDB Tools'
description 'Sniffy InfluxDB Tools - serializers, deserializers and more'
url 'https://github.com/sniffy/influxdb-tools'
inceptionYear '2018'
scm {
url 'https://github.com/sniffy/influxdb-tools'
connection 'scm:https://github.com/sniffy/influxdb-tools.git'
developerConnection 'scm:[email protected]:sniffy/influxdb-tools.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'bedrin'
name 'Dmitry Bedrin'
email '[email protected]'
}
}
}
}
}
// failureMessage Invalid POM: /io/sniffy/influxdb/parser/0.0.1/parser-0.0.1.pom: Project name missing, Project description missing, Project URL missing, License information missing, SCM URL missing, Developer information missing