Skip to content

Commit

Permalink
6.1.2
Browse files Browse the repository at this point in the history
- Fix build for jitpack
  • Loading branch information
Aaron committed Dec 31, 2021
1 parent 9ac6b02 commit f20844e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'maven-publish'
}

version = '6.1.1'
version = '6.1.2'
group = 'com.comfortanalytics'
description = "Another Object Notation"

Expand All @@ -23,8 +23,6 @@ dependencies {
testImplementation 'com.google.code.gson:gson:+'
testImplementation 'com.googlecode.json-simple:json-simple:+'
testImplementation 'com.owlike:genson:+'
//testImplementation 'org.openjdk.jmh:jmh-core:+'
//testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:+'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:+'

}
Expand All @@ -42,6 +40,14 @@ java {
withJavadocJar()
}

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
Expand Down

0 comments on commit f20844e

Please sign in to comment.