Skip to content

Commit

Permalink
api
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-cherednik committed Nov 21, 2023
1 parent ba35ba8 commit bfbb0ac
Show file tree
Hide file tree
Showing 55 changed files with 539 additions and 4,876 deletions.
46 changes: 19 additions & 27 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ repositories {
mavenCentral()
}

group 'ru.oleg-cherednik.jackson'
version '2.7'
group 'ru.oleg-cherednik.json-api'
version '666'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -59,40 +59,32 @@ pmd {
}

dependencies {
compileOnly "com.fasterxml.jackson.core:jackson-databind:${property('jackson.version')}"
compileOnly "com.fasterxml.jackson.module:jackson-module-afterburner:${property('jackson.version')}"
compileOnly "com.fasterxml.jackson.module:jackson-module-parameter-names:${property('jackson.version')}"
compileOnly "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${property('jackson.version')}"
compileOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${property('jackson.version')}"

annotationProcessor 'org.projectlombok:lombok:1.18.24'

implementation 'org.apache.commons:commons-lang3:3.13.0'

implementation 'ru.oleg-cherednik.jackson:jackson-utils:666'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
implementation 'com.fasterxml.jackson.module:jackson-module-afterburner:2.15.3'
implementation 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.15.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.3'

// implementation 'ru.oleg-cherednik.gson:gson-utils:666'
// implementation 'com.google.code.gson:gson:2.10.1'

implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.20.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.20.0'

testImplementation('org.testng:testng:7.5.1') {
exclude group: 'junit', module: 'junit'
exclude group: 'org.apache.ant', module: 'ant'
}

testImplementation "com.fasterxml.jackson.core:jackson-databind:${property('jackson.version')}"
testImplementation "com.fasterxml.jackson.module:jackson-module-afterburner:${property('jackson.version')}"
testImplementation "com.fasterxml.jackson.module:jackson-module-parameter-names:${property('jackson.version')}"
testImplementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${property('jackson.version')}"
testImplementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${property('jackson.version')}"

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'commons-io:commons-io:2.15.0'
testImplementation 'org.mockito:mockito-core:4.11.0'

testImplementation("org.springframework.boot:spring-boot-starter-web:${property('spring-boot.version')}") {
exclude group: 'org.junit.jupiter'
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
exclude group: 'com.fasterxml.jackson.module'
}
testImplementation 'org.apache.commons:commons-collections4:4.4'

testImplementation("org.springframework.boot:spring-boot-starter-test:${property('spring-boot.version')}") {
exclude group: 'org.junit.vintage'
exclude group: 'org.junit.jupiter'
}

testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
}
Expand Down
91 changes: 0 additions & 91 deletions src/main/java/ru/olegcherednik/jackson_utils/EnumId.java

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit bfbb0ac

Please sign in to comment.