-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
git submodules? #1
Comments
I went with cloning because this is the encapsulated project - so i was working on a gradle git checkout - so I could include the projects as gradle subprojects but i was hitting a few roadblocks. I'm not tied to putting clone checkouts. I just haven't moved to anything else. I'm assuming for gradle you're talking about https://blog.gradle.org/introducing-source-dependencies - which is preferable (to me). I was using a different way before. I just haven't gotten back to this. Since I've now finished the build process I'm able to get back to cleaning up the build script. |
Makes sense to me.
I haven't used the Gradle source repository feature yet.
What do you think of it's capabilities?
…On Fri, May 21, 2021, 12:47 PM cdrchops ***@***.***> wrote:
I went with cloning because this is the encapsulated project - so i was
working on a gradle git checkout - so I could include the projects as
gradle subprojects but i was hitting a few roadblocks.
I'm not tied to putting clone checkouts. I just haven't moved to anything
else.
I'm assuming for gradle you're talking about
https://blog.gradle.org/introducing-source-dependencies - which is
preferable (to me). I was using a different way before. I just haven't
gotten back to this. Since I've now finished the build process I'm able to
get back to cleaning up the build script.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABH4XNCUDQTW4LAXWJMXWVTTO2FDZANCNFSM45FVVSHQ>
.
|
I was using it before I decided to just clone. it works nice. it does essentially the same thing I'm doing except that all projects are now a part of the main project - so it does help compiling them all at one time instead of cd into a directory, running gradle, then moving on to the next directory. it will check everything out into a sub-directory. The reason the clones are in the build script is because I was having other issues and I just wanted to get the build script done so I could move on. eventually, I'll go that route again now that the build script is complete. |
I noticed a long list of git clone steps in a recent commit.
Would it be better to use git submodules or gradle source sources for the various dependencies?
The text was updated successfully, but these errors were encountered: