Questions tagged [gradle]
The gradle tag has no summary.
18 questions
1
vote
1
answer
372
views
Gradle/Maven project splitting: interfaces and implementation
Assume we have a single large JVM project (the example is in Kotlin), containing code. As part of a refactoring effort, we are decoupling pieces of the code by splitting the code into multiple modules,...
1
vote
0
answers
311
views
Gradle + Git - enforcing a version change upon merge to master
I am leading a team of developers creating a Java library. We are following the standard Semantic Versioning model. The code is versioned with Git. Artifacts are built and pushed to an artifact ...
1
vote
0
answers
149
views
How to build Spring Boot multimodule app build to separate WARs and shared library/dependencies?
Currently, I'm trying to migrate multimodule angular + spring 4 app build with ant and ivy to Spring Boot and build it with Gradle. The issue is that I don’t how to create build upon some custom ...
2
votes
1
answer
525
views
How to depend on forked external dependencies?
Our project uses Gradle (whose dependency system is compatible with Maven IIUC). When depending on external projects, we try to depend on stable versions. Sometimes we have to depend on a ...
9
votes
1
answer
607
views
How to manage non-unit tests in a project?
I have some code in my project I personally call tests that are not unit tests. They are meant to be run and the result has to be evaluated by a human. I did this because I'm making a physics engine ...
2
votes
1
answer
899
views
Reliable way of finding the latest version of a Gradle library
in Gradle, when you include a library, you have to add the version number at the end, as such:
com.android.support:appcompat-v7:X.X.X
But a lot of times, understandably, the website for libraries ...
1
vote
1
answer
1k
views
Supporting Multiple Java Versions in OSS Libraries
I am in the process of standing up my first OSS Java lib (GitHub/Maven) that an open source hardware community will be making fair/moderate use of.
I am writing this library with Java 8 and managing ...
3
votes
0
answers
414
views
Gradle Flavors vs. App Projects
I've inherited a pretty big and old project with a tiny bit of technical debt which is still under active development. A couple of months ago we made the jump from Eclipse+Ant to Android Studio+Gradle....
2
votes
1
answer
5k
views
Sharing dependency configuration over multiple projects (Maven)
From a big SVN repository we want to switch to Maven/Gradle for handling dependencies so that programmers can work with a single project without checking out the whole thing.
We are writing plugins ...