Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrated to th2 gradle plugin 0.0.8 #102

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ Please see more details about this feature via [link](https://github.com/th2-net

## 5.6.0

* Migrated to th2 gradle plugin `0.0.6`
* Migrated to th2 gradle plugin `0.0.8`
* Updated bom: `4.6.1`
* Updated common: `5.11.0-dev`
* Updated common: `5.12.0-dev`
* Updated common-utils: `2.2.3-dev`
* Updated cradle api: `5.3.0-dev`

Expand Down
25 changes: 12 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
plugins {
id "application"
id "com.exactpro.th2.gradle.component" version "0.0.6"
}

ext {
cradleVersion = '5.3.0-dev'
id "com.exactpro.th2.gradle.component" version "0.0.8"
}

group = 'com.exactpro.th2'
Expand All @@ -13,18 +9,21 @@ version = release_version
sourceCompatibility = 11
targetCompatibility = 11

ext {
cradleVersion = '5.3.0-dev'
}

repositories {
mavenCentral()

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

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

configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
Expand All @@ -37,7 +36,7 @@ javadoc {
}

dependencies {
implementation('com.exactpro.th2:common:5.11.0-dev') {
implementation('com.exactpro.th2:common:5.12.0-dev') {
exclude group: 'com.exactpro.th2', module: 'cradle-core'
exclude group: 'com.exactpro.th2', module: 'cradle-cassandra'
}
Expand Down Expand Up @@ -65,14 +64,14 @@ dependencies {
testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0'
}

test {
useJUnitPlatform()
}

application {
mainClassName 'com.exactpro.th2.estore.EventStore'
}

test {
useJUnitPlatform()
}

dependencyCheck {
suppressionFile = file('suppressions.xml')
suppressionFile='suppressions.xml'
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
release_version=5.6.0
description='th2 estore component'
vcs_url=https://github.com/th2-net/th2-estore