You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>'
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 API'
description 'ObjectBox is a fast NoSQL database for Objects'