We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
./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...
The text was updated successfully, but these errors were encountered: