Skip to content

Commit

Permalink
Codec decodes each raw message with XML (ignore case) or empty prot…
Browse files Browse the repository at this point in the history
…ocol

* Updated:
  * th2 gradle plugin `0.1.3` (bom: `4.8.0`)
  * common-utils: `2.3.0-dev`
  * underscore: `1.106`
  • Loading branch information
Nikita-Smirnov-Exactpro committed Oct 17, 2024
1 parent 80cbbee commit 6f9641e
Show file tree
Hide file tree
Showing 8 changed files with 211 additions and 198 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Codec Xml via Xsd (2.3.0)
# Codec Xml via Xsd (2.4.0)
![version](https://img.shields.io/badge/version-0.0.4-blue.svg)

# How it works:
Expand Down Expand Up @@ -142,6 +142,14 @@ spec:

## Changelog

### v2.4.0

* Codec decodes each raw message with `XML` (ignore case) or empty protocol
* Updated:
* th2 gradle plugin `0.1.3` (bom: `4.8.0`)
* common-utils: `2.3.0-dev`
* underscore: `1.106`

### v2.3.0

* Migrated to th2 gradle plugin `0.1.1` (bom: `4.6.1`)
Expand Down
26 changes: 4 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
id "application"
id "java-library"
id "maven-publish"
id "com.exactpro.th2.gradle.publish" version "0.1.1"
id "com.exactpro.th2.gradle.component" version "0.1.1"
id "com.exactpro.th2.gradle.publish" version "0.1.3"
id "com.exactpro.th2.gradle.component" version "0.1.3"
}

group = 'com.exactpro.th2'
Expand All @@ -19,27 +19,9 @@ repositories {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}

maven {
name 'Sonatype_snapshots'
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
metadataSources {
mavenPom()
artifact()
}
}

maven {
name 'Sonatype_releases'
url 'https://s01.oss.sonatype.org/content/repositories/releases/'
}

maven {
name 'Sonatype_releases'
url 'https://s01.oss.sonatype.org/content/repositories/releases/'
metadataSources {
mavenPom()
artifact()
}
}

mavenCentral()
Expand All @@ -53,14 +35,14 @@ repositories {

dependencies {
implementation "com.exactpro.th2:common:5.14.0-dev"
implementation "com.exactpro.th2:common-utils:2.2.3-dev"
implementation "com.exactpro.th2:common-utils:2.3.0-dev"
implementation "com.exactpro.th2:codec:5.5.0-dev"

implementation "org.slf4j:slf4j-api"
implementation "io.github.oshai:kotlin-logging:5.1.4"

implementation "com.fasterxml.jackson.core:jackson-core"
implementation "com.github.javadev:underscore:1.104"
implementation "com.github.javadev:underscore:1.106"
implementation "commons-io:commons-io"

implementation "org.apache.ws.xmlschema:xmlschema-core:2.3.1"
Expand Down
18 changes: 1 addition & 17 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
#
# Copyright 2021-2023 Exactpro (Exactpro Systems Limited)
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

release_version=2.3.0
release_version=2.4.0
kotlin_version=1.8.22
description = 'th2 codec xml via xsd'

vcs_url=https://github.com/th2-net/th2-codec-xml-via-xsd
21 changes: 4 additions & 17 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
#
# Copyright 2021-2024 Exactpro (Exactpro Systems Limited)
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 6f9641e

Please sign in to comment.