File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ image:https://www.bintray.com/docs/images/bintray_badge_color.png["kotlin-html-d
2323----
2424repositories {
2525 jcenter() // published to bintray
26+ // or:
27+ mavenCentral() // also published to maven central
2628}
2729
2830dependencies {
@@ -35,20 +37,21 @@ image:http://maven.apache.org/images/maven-logo-black-on-white.png["kotlin-html-
3537.pom.xml
3638[source,xml]
3739----
38- <repositories>
39- <repository>
40- <id>jcentral</id>
41- <url>https://jcenter.bintray.com</url>
42- </repository>
43- </repositories>
44-
4540<dependencies>
4641 <dependency>
4742 <groupId>com.github.daggerok</groupId>
4843 <artifactId>kotlin-html-dsl</artifactId>
4944 <version>1.0.ALL</version>
5045 </dependency>
5146</dependencies>
47+
48+ <!-- only if you want use bintray jcetner -->
49+ <repositories>
50+ <repository>
51+ <id>jcentral</id>
52+ <url>https://jcenter.bintray.com</url>
53+ </repository>
54+ </repositories>
5255----
5356
5457== usage
You can’t perform that action at this time.
0 commit comments