-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.2.0](v0.1.2...v0.2.0) (2023-06-28) ### Features * add github templates ([#124](#124)) ([7990742](7990742)) * boilerplate helm chart ([#121](#121)) ([70c66ca](70c66ca)) * publish the helm client to maven central ([#123](#123)) ([6b40d2d](6b40d2d)) * relocates the docker image definition and adds a new image definition ([#126](#126)) ([db59e7c](db59e7c))
- Loading branch information
1 parent
dc0a27a
commit 44525ab
Showing
2 changed files
with
23 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "conventionalcommits" | ||
} | ||
], | ||
"gradle-semantic-release-plugin" | ||
], | ||
"branches": [ | ||
"main" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,8 @@ | ||
# | ||
# Copyright (C) 2023 Hedera Hashgraph, LLC | ||
# | ||
# 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. | ||
# | ||
|
||
description=The Full Stack Testing (FST) Suite provides a framework and an associated set of tools for conducting \ | ||
end-to-end and full stack tests against the Hedera network software. Designed with ease of use in mind, the tools are \ | ||
purpose built for the Hedera community and open-source contributors. | ||
|
||
# Version for all subprojects | ||
version=0.1.0-SNAPSHOT | ||
|
||
# Set the default Group ID | ||
group=com.hedera.fullstack | ||
|
||
# Need increased heap for running Gradle itself, or SonarQube will run the JVM out of metaspace | ||
org.gradle.jvmargs=-Xmx3072m | ||
|
||
# Enable Gradle caching | ||
org.gradle.caching=true | ||
|
||
# Enable parallel builds | ||
org.gradle.parallel=true | ||
|
||
# Disable publish signing by default | ||
publishSigningEnabled=false | ||
|
||
# Initialize and default to true | ||
mavenPublishingEnabled=true | ||
description = The Full Stack Testing (FST) Suite provides a framework and an associated set of tools for conducting end-to-end and full stack tests against the Hedera network software. Designed with ease of use in mind, the tools are purpose built for the Hedera community and open-source contributors. | ||
version = 0.2.0 | ||
group = com.hedera.fullstack | ||
org.gradle.jvmargs = -Xmx3072m | ||
org.gradle.caching = true | ||
org.gradle.parallel = true | ||
publishSigningEnabled = false | ||
mavenPublishingEnabled = true |