Open tomhealey-icma opened 6 months ago
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.
will result in dependency error.
successful build.
Dependency error
Windows 10 Gradle 8.4 and 8.5 JAVA 17 Powershell
...add any other context about the problem here. If applicable, add screenshots to help explain...
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:
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...