finos / traderX

https://demo.traderx.finos.org/
Apache License 2.0
54 stars 60 forks source link

Build dependency #151

Open tomhealey-icma opened 6 months ago

tomhealey-icma commented 6 months ago

Bug Report

The instructions indicate creating a settings.gradle file in .corp with the following:

rootProject.name = 'finos-traderX' includeFlat 'database' includeFlat 'account-service' includeFlat 'position-service' includeFlat 'trade-service' includeFlat 'trade-processor'

I found that running:

cd .corp ./gradlew build

didn't work without adding: dependencyResolutionManagement { repositories { // Use Maven Central for resolving dependencies. mavenCentral() }

to the setting.gradle file.

Steps to Reproduce:

  1. cd .corp ./gradlew build

will result in dependency error.

Expected Result:

successful build.

Actual Result:

Dependency error

Environment:

Windows 10 Gradle 8.4 and 8.5 JAVA 17 Powershell

Additional Context:

...add any other context about the problem here. If applicable, add screenshots to help explain...