Skip to content

Commit 71b0c20

Browse files
committed
Fix classifier
1 parent 41a67ec commit 71b0c20

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

BINTRAY.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212
}
1313
1414
dependencies {
15-
compile "com.github.daggerok:kotlin-html-dsl:0.1.PLUS"
15+
compile "com.github.daggerok:kotlin-html-dsl:0.2.PLUS"
1616
}
1717
----
1818

@@ -31,7 +31,7 @@ dependencies {
3131
<dependency>
3232
<groupId>com.github.daggerok</groupId>
3333
<artifactId>kotlin-html-dsl</artifactId>
34-
<version>0.1.PLUS</version>
34+
<version>0.2.PLUS</version>
3535
</dependency>
3636
</dependencies>
3737
----
@@ -45,7 +45,7 @@ repositories {
4545
}
4646
4747
dependencies {
48-
compile "com.github.daggerok:kotlin-html-dsl:0.1.PLUS"
48+
compile "com.github.daggerok:kotlin-html-dsl:0.2.PLUS"
4949
}
5050
----
5151

@@ -64,7 +64,7 @@ dependencies {
6464
<dependency>
6565
<groupId>com.github.daggerok</groupId>
6666
<artifactId>kotlin-html-dsl</artifactId>
67-
<version>0.1.PLUS</version>
67+
<version>0.2.PLUS</version>
6868
</dependency>
6969
</dependencies>
7070
----
@@ -109,7 +109,7 @@ dependencies {
109109
<dependency>
110110
<groupId>com.github.daggerok</groupId>
111111
<artifactId>kotlin-html-dsl</artifactId>
112-
<version>0.1.PLUS</version>
112+
<version>0.2.PLUS</version>
113113
</dependency>
114114
----
115115

JITPACK.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ allprojects {
1515
1616
dependencies {
1717
// JitPack 2:
18-
compile "com.github.daggerok:kotlin-html-dsl:0.1.PLUS"
18+
compile "com.github.daggerok:kotlin-html-dsl:0.2.PLUS"
1919
}
2020
----
2121

@@ -35,7 +35,7 @@ dependencies {
3535
<dependency>
3636
<groupId>com.github.daggerok</groupId>
3737
<artifactId>kotlin-html-dsl</artifactId>
38-
<version>0.1.PLUS</version>
38+
<version>0.2.PLUS</version>
3939
</dependency>
4040
</dependencies>
4141
----

VERSIONS.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ see link:./BINTRAY.adoc[bintray] and link:./JITPACK.adoc[jitpack] READMEs to pic
55
|===
66
|bintray jcenter/daggerok|jitpack
77

8-
|0.1.PLUS
9-
|0.1.PLUS
8+
|0.2.PLUS
9+
|0.2.PLUS
1010

1111
//|1.0.PLUS
1212
//|1.0.PLUS

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323

2424
description = "Kotlin HTML DSL - small kotlin extension library."
2525
group = "com.github.daggerok"
26-
version = "0.1.PLUS"
26+
version = "0.2.PLUS"
2727
sourceCompatibility = targetCompatibility = "$javaVersion"
2828

2929
defaultTasks "clean", "build", "install", "publishToMavenLocal", "publish"
@@ -126,9 +126,9 @@ publishing {
126126
publications {
127127
publication(MavenPublication) {
128128
from components.java
129-
artifact classifierJar { classifier = "1.5" }
129+
artifact classifierJar { classifier = "1.8" }
130130
artifact sourceJar { classifier = "sources" }
131-
artifact classifierSourceJar { classifier = "1.5-sources" }
131+
artifact classifierSourceJar { classifier = "1.8-sources" }
132132
pom.withXml {
133133
def root = asNode()
134134
root.appendNode("description", project.description)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.github.daggerok</groupId>
8-
<version>0.1.PLUS</version>
8+
<version>0.2.PLUS</version>
99
<artifactId>kotlin-html-dsl</artifactId>
1010
<packaging>jar</packaging>
1111

0 commit comments

Comments
 (0)