Skip to content

Commit 2a21e7e

Browse files
committed
Released 0.8.15 with gradle
1 parent f582575 commit 2a21e7e

File tree

18 files changed

+206
-1
lines changed

18 files changed

+206
-1
lines changed

annotation/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ plugins {
22
java
33
}
44

5+
apply(from = "../maven-push-java-lib.gradle")
6+
57
dependencies {
68
compile(project(":core"))
79
}

annotation/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POM_NAME = Annotations for TikXml
2+
POM_ARTIFACT_ID = annotation
3+
POM_PACKAGING = jar

autovalue/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
java
33
id("kotlin")
44
}
5+
apply(from = "../maven-push-java-lib.gradle")
56

67
dependencies {
78
compile(project(":core"))

autovalue/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POM_NAME = AutoValue Annotation Processor Plugin
2+
POM_ARTIFACT_ID = auto-value-tikxml
3+
POM_PACKAGING = jar

converters/date-rfc3339/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ plugins {
22
java
33
}
44

5+
apply(from = "$rootDir/maven-push-java-lib.gradle")
6+
7+
58
dependencies {
69
implementation(project(":core"))
710
testCompile(Deps.junit)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POM_NAME = Date TypeConverter for rfc3393 format
2+
POM_ARTIFACT_ID = auto-value-tikxml
3+
POM_PACKAGING = jar

converters/htmlescape/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ plugins {
22
java
33
}
44

5+
apply(from = "$rootDir/maven-push-java-lib.gradle")
6+
57
dependencies {
68
implementation(project(":core"))
79
testCompile(Deps.junit)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POM_NAME = String Converter that escapes html characters
2+
POM_ARTIFACT_ID = converter-htmlescape
3+
POM_PACKAGING = jar

core/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ plugins {
22
java
33
}
44

5+
apply(from = "$rootDir/maven-push-java-lib.gradle")
6+
57
dependencies {
68
compile(Deps.okio)
79
testImplementation(Deps.junit)
810
testImplementation(Deps.assertj)
9-
}
11+
}

core/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POM_NAME = Simple API to read and write XML
2+
POM_ARTIFACT_ID = core
3+
POM_PACKAGING = jar

0 commit comments

Comments
 (0)