-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
140 lines (124 loc) · 4.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
buildscript {
ext.android_buildtools_version = '26.0.2'
ext.jackson_version = '2.8.6'
ext.jpa_version = '2.1.1'
ext.kotlin_version = '1.2.20'
ext.rxjava2_version = '2.1.9'
ext.reactor_version = '3.1.4.RELEASE'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.8"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
}
idea {
project {
jdkName = '1.8'
}
}
group = 'io.requery'
version = '1.5.1'
description = 'A light but powerful object mapper and SQL generator for Java/Android'
Properties properties = new Properties()
File localProperties = project.rootProject.file('local.properties')
if (localProperties.exists()) {
properties.load(localProperties.newDataInputStream())
}
configure([project(':requery'), project(':requery-processor'), project(':requery-kotlin'), project(':requery-jackson')]) {
apply plugin: 'java'
apply plugin: 'maven-publish'
javadoc.options.links("http://docs.oracle.com/javase/8/docs/api/");
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
publishing {
publications {
maven(MavenPublication) {
from components.java
groupId rootProject.group
artifactId project.name
version rootProject.version
artifact sourcesJar
artifact javadocJar
pom.withXml {
asNode().children().last() + project.pomXml
}
}
}
repositories {
maven {
credentials {
username = bintray.user
password = bintray.key
}
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
}
}
}
}
configure([project(':requery'), project(':requery-processor'), project(':requery-android'), project(':requery-kotlin'), project(':requery-jackson')]) {
apply plugin: 'com.jfrog.bintray'
bintray {
user = properties.getProperty('bintray.user')
key = properties.getProperty('bintray.apikey')
publications = ['maven']
pkg {
repo = 'requery'
name = 'requery'
userOrg = 'requery'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/requery/requery.git'
version {
name = rootProject.version
desc = rootProject.description
released = new Date()
}
}
}
ext {
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
description project.description ?: rootProject.description
url 'https://github.com/requery/requery'
scm {
url 'https://github.com/requery/requery.git'
connection 'scm:git:git://github.com/requery/requery.git'
developerConnection 'scm:git:git@github.com/requery/requery.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/license/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'npurushe'
name 'Nikhil Purushe'
}
}
}
}
}