Compare commits

...

2 Commits

Author SHA1 Message Date
Sambo Chea ced6bd6726 Updated build and config for publish 2020-07-03 12:06:41 +07:00
Sambo Chea c86cf6e7d8 Updated build and change groups 2020-07-03 11:13:30 +07:00
3 changed files with 7 additions and 7 deletions

View File

@ -4,21 +4,21 @@ plugins {
id 'maven' id 'maven'
} }
group 'com.cubetiqs' group 'com.cubetiqs.libra'
version '1.0-SNAPSHOT' version '1.0-SNAPSHOT'
repositories { repositories {
mavenCentral() mavenCentral()
maven { maven {
url "https://oss-internal.cubetiqs.com/repository/maven-public/" url "${nexusUrl}/repository/maven-public/"
} }
} }
dependencies { dependencies {
implementation project(':cubetiq-parent') implementation 'com.cubetiqs.libra:parent:1.0-20200703.050136-4'
implementation project(':cubetiq-logging') implementation 'com.cubetiqs.libra:logging:1.0-20200703.050529-4'
// required by :cubetiq-logging module // required by logging module
implementation 'org.apache.logging.log4j:log4j-core:2.13.3' implementation 'org.apache.logging.log4j:log4j-core:2.13.3'
implementation 'org.apache.commons:commons-text:1.8' implementation 'org.apache.commons:commons-text:1.8'
@ -28,6 +28,7 @@ dependencies {
} }
compileKotlin { compileKotlin {
kotlinOptions.freeCompilerArgs = ["-Xjsr305=strict"]
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
compileTestKotlin { compileTestKotlin {

View File

@ -1 +1 @@
rootProject.name = 'cubetiq-common-utils' rootProject.name = 'common-utils'

View File

@ -1,7 +1,6 @@
package com.cubetiqs.util; package com.cubetiqs.util;
import com.cubetiqs.logging.Log; import com.cubetiqs.logging.Log;
import org.apache.commons.text.StringEscapeUtils;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;