Skip to content

Commit

Permalink
fix: resolves maven central publish issues (#119)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <nathan@swirldslabs.com>
  • Loading branch information
nathanklick authored Jun 27, 2023
1 parent d8ac071 commit a930f62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/flow-pull-request-checks.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##
# Copyright (C) 2022-2023 Hedera Hashgraph, LLC
# 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.
Expand All @@ -22,7 +22,6 @@ on:
- opened
- reopened
- synchronize
- labeled

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions fullstack-bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ publishing {
from(components.getByName("javaPlatform"))

pom {
packaging = findProperty("maven.project.packaging")?.toString() ?: "jar"
packaging = "pom"
name.set(project.name)
description.set(provider(project::getDescription))
url.set("https://www.hedera.com/")
Expand Down Expand Up @@ -132,4 +132,4 @@ tasks.register("releaseMavenCentral") {
tasks.register("releaseMavenCentralSnapshot") {
group = "release"
dependsOn(tasks.named("publishMavenPublicationToSonatypeSnapshotRepository"))
}
}
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
# 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

Expand Down

0 comments on commit a930f62

Please sign in to comment.