Skip to content

Commit

Permalink
update EMF jackson dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Jan 18, 2024
1 parent bed6b88 commit cd7ce82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ext {
assertj: '3.16.1',
commonmark: '0.14.0',
directoryWatcher: '0.15.0',
emfjsonJackson: '1.3.0',
emfjsonJackson: '2.2.0',
guava: '31.1-jre',
junit: '5.9.0',
jackson: '2.13.4',
Expand Down Expand Up @@ -58,7 +58,7 @@ ext {
watcher: "io.methvin:directory-watcher:${versions.directoryWatcher}"
]
emf = [
jackson: "org.emfjson:emfjson-jackson:${versions.emfjsonJackson}"
jackson: "org.eclipse.emfcloud:emfjson-jackson:${versions.emfjsonJackson}"
]

slf4j = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import io.vrap.rmf.raml.model.modules.Api
import io.vrap.rmf.raml.model.types.*
import io.vrap.rmf.raml.model.values.RegExp
import org.eclipse.emf.ecore.EObject
import org.emfjson.jackson.annotations.EcoreReferenceInfo
import org.emfjson.jackson.annotations.EcoreTypeInfo
import org.emfjson.jackson.databind.ser.EcoreReferenceSerializer
import org.emfjson.jackson.handlers.BaseURIHandler
import org.emfjson.jackson.module.EMFModule
import org.eclipse.emfcloud.jackson.annotations.EcoreReferenceInfo
import org.eclipse.emfcloud.jackson.annotations.EcoreTypeInfo
import org.eclipse.emfcloud.jackson.databind.ser.EcoreReferenceSerializer
import org.eclipse.emfcloud.jackson.handlers.BaseURIHandler
import org.eclipse.emfcloud.jackson.module.EMFModule
import java.io.IOException

class OasModuleRenderer constructor(val api: Api, override val vrapTypeProvider: VrapTypeProvider) : EObjectExtensions, FileProducer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import io.vrap.rmf.raml.model.modules.Api
import io.vrap.rmf.raml.model.types.*
import io.vrap.rmf.raml.model.values.RegExp
import org.eclipse.emf.ecore.EObject
import org.emfjson.jackson.annotations.EcoreReferenceInfo
import org.emfjson.jackson.annotations.EcoreTypeInfo
import org.emfjson.jackson.databind.ser.EcoreReferenceSerializer
import org.emfjson.jackson.handlers.BaseURIHandler
import org.emfjson.jackson.module.EMFModule
import org.eclipse.emfcloud.jackson.annotations.EcoreReferenceInfo
import org.eclipse.emfcloud.jackson.annotations.EcoreTypeInfo
import org.eclipse.emfcloud.jackson.databind.ser.EcoreReferenceSerializer
import org.eclipse.emfcloud.jackson.handlers.BaseURIHandler
import org.eclipse.emfcloud.jackson.module.EMFModule
import java.io.IOException

class RamldocModuleRenderer constructor(val api: Api, override val vrapTypeProvider: VrapTypeProvider) : EObjectExtensions, FileProducer {
Expand Down

0 comments on commit cd7ce82

Please sign in to comment.