File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
2+ apply plugin : ' maven-publish'
23apply plugin : ' kotlin-android'
34
45android {
@@ -51,7 +52,7 @@ tasks.withType(Test) {
5152task javadoc (type : Javadoc ) {
5253 source = android. sourceSets. main. java. srcDirs
5354 classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
54- destinationDir = file(" ../javadoc/scene_ktx /" )
55+ destinationDir = file(" ../javadoc/scene_fragment /" )
5556 failOnError false
5657 title = null
5758
@@ -62,3 +63,17 @@ task javadoc(type: Javadoc) {
6263 encoding " UTF-8"
6364 }
6465}
66+
67+ afterEvaluate {
68+ publishing {
69+ publications {
70+ // Creates a Maven publication called "release".
71+ release(MavenPublication ) {
72+ from components. release
73+ groupId = ' com.github.bytedance.scene'
74+ artifactId = ' scene_fragment'
75+ version = ' 1.3.0'
76+ }
77+ }
78+ }
79+ }
You can’t perform that action at this time.
0 commit comments