Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
wzbos committed Jul 16, 2020
1 parent af49495 commit 769b48d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 7 additions & 0 deletions bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ if (project.hasProperty("android")) { // Android libraries
}

task javadoc(type: Javadoc) {
failOnError = false
source = android.sourceSets.main.java.srcDirs
options {
encoding 'utf-8'
charSet 'utf-8'
links 'http://docs.oracle.com/javase/7/docs/api/'
linksOffline "https://developer.android.com/reference", "${android.sdkDirectory}/docs/reference"
}
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
} else { // Java libraries
Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
}
}
Expand All @@ -37,4 +37,3 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ siteUrl=https://github.com/wzbos/Android-Rudolph-Router
gitUrl=https://github.com/wzbos/Android-Rudolph-Router.git
licenseName=The Apache Software License, Version 2.0
licenseUrl=http://www.apache.org/licenses/LICENSE-2.0.txt
rudolph_version=1.0.6
rudolph_version=1.1.0
developerId=wzbos
developerName=zongbo.wu
developerEmail=sckoo@163.com
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/**
* Created by wuzongbo on 2017/4/12.
*/

public enum RouteType {
ACTIVITY,
METHOD,
Expand Down

0 comments on commit 769b48d

Please sign in to comment.