Multiple Package type support(gradle/Pakage.json) #260
skagithala-clgx
started this conversation in
Java Team
Replies: 1 comment 1 reply
-
Sorry, I'm not sure what would cause those files to be missing, but I would suggest you check out our samples. We have a sample Gradle + Node.js project here -> https://github.com/paketo-buildpacks/samples/tree/main/java/java-node/gradle-node Perhaps that will give you some clues on how to get your custom project working. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Team,
We have use case where multistack repo is configured and it is using gradle with packeto build pack and it is using common folder for dependencies resolutions. trying to install npm_install, failing with below errors
Issue:
it is unable to install npm_install
below are the configurations
settings.gradle
rootProject.name = 'xyz'
include 'frontend'
include 'backend'
In build.gradle of project1 below line is mentioned for dependency
frontend/build.gradle contains buildFrontend.dependsOn npm_install
Backend/build.gradle contains
bootJar.dependsOn ':frontend:npm_install'
bootJar.dependsOn ':frontend:buildFrontend'
Project structure:
project1
project2
gradlew
gradlew.bat
settings.gradle
Could you please guide on mono repo configuration, provide if we have any documentation for the same.
Beta Was this translation helpful? Give feedback.
All reactions