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

Migrate to th2 gradle plugin 0.0.8 #5

Merged
merged 5 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# th2-cradle-admin 1.10.0
# th2-cradle-admin 1.10.1

The th2-cradle-admin is a set of projects for managing books and pages in th2 storage.

Expand Down Expand Up @@ -65,6 +65,9 @@ spec:

## Release notes:

### 1.10.1-dev
* Migrated to th2 gradle plugin `0.0.7`

### 1.10.0-dev
* Migrated to th2 gradle plugin `0.0.6`
* Updated:
Expand Down
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "com.exactpro.th2.gradle.base" version "0.0.6"
id "com.exactpro.th2.gradle.component" version "0.0.6" apply false
id "com.exactpro.th2.gradle.base" version "0.0.7"
id "com.exactpro.th2.gradle.component" version "0.0.7" apply false
}

ext {
Expand All @@ -20,6 +20,7 @@ subprojects {
compileJava.options.debugOptions.debugLevel = 'source,lines,vars' // Include debug information

group = 'com.exactpro.th2'
version = release_version

repositories {
mavenCentral()
Expand Down Expand Up @@ -68,4 +69,8 @@ subprojects {
showStandardStreams = true
}
}
}

licenseReport {
excludeBoms = true
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = 1.10.0
release_version = 1.10.1
Loading