forked from objectbox/objectbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
86 lines (76 loc) · 2.46 KB
/
build.gradle
File metadata and controls
86 lines (76 loc) · 2.46 KB
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
apply plugin: 'java'
apply plugin: 'findbugs'
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
group = 'io.objectbox'
version= rootProject.version
tasks.withType(FindBugs) {
reports {
xml.enabled false
html.enabled true
}
ignoreFailures = true
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':objectbox-java-api')
compile 'org.greenrobot:essentials:3.0.0-RC1'
compile 'com.google.flatbuffers:flatbuffers-java:1.7.2'
compile 'com.google.code.findbugs:jsr305:3.0.2'
}
javadoc {
failOnError = false
title = " ObjectBox Java ${version} API"
options.bottom = 'Available under the Apache License, Version 2.0 - <i>Copyright © 2017 <a href="http://objectbox.io/">ObjectBox Ltd</a>. All Rights Reserved.</i>'
exclude("**/com/google/**")
exclude("**/io/objectbox/Cursor.java")
exclude("**/io/objectbox/KeyValueCursor.java")
exclude("**/io/objectbox/ModelBuilder.java")
exclude("**/io/objectbox/Properties.java")
exclude("**/io/objectbox/Transaction.java")
exclude("**/io/objectbox/model/**")
exclude("**/io/objectbox/ideasonly/**")
exclude("**/io/objectbox/internal/**")
exclude("**/io/objectbox/reactive/DataPublisherUtils.java")
exclude("**/io/objectbox/reactive/WeakDataObserver.java")
def srcApi = project(':objectbox-java-api').file('src/main/java/')
if (!srcApi.directory) throw new GradleScriptException("Not a directory: ${srcApi}", null)
source += srcApi
doLast {
copy {
from '../javadoc-style'
into "build/docs/javadoc/"
}
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
uploadArchives {
repositories {
mavenDeployer {
// Basic definitions are defined in root project
pom.project {
name 'ObjectBox Java (only)'
description 'ObjectBox is a fast NoSQL database for Objects'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
}
}
}
}