Can someone please give me a simple build.gradle example of how I can specify compile-time-only classes that are not included in the runtime deployment (war).
Gradle seems to have gotten this the wrong way around since 'runtime' inherits from 'compile'. I can't imagine a situation where I would want classes at runtime that I wouldn't want at compile time. However, there are many circumstances where I need classes to generate code at compile time that I do not wish to deploy at runtime!
I've ploughed through the bloated gradle documentation but cannot find any clear instructions or examples. I suspect this might be achieved by defining a 'configuration' and setting it as the classpath of the CompileJava plugin - but the documentation falls short on explaining how to achieve this.
It's quite common to have runtime dependencies that aren't compile time dependencies. The other way around is a fairly special case and as such requires a few lines of configuration in Gradle. I suggest to search the Gradle forum for
provided
.It sounds like what you are really after is declaring dependencies for your build, not for the compile class path. How this is done depends on how the desired functionality gets invoked (Ant task, Gradle task/plugin, ad-hoc use from build script). If you provide more detailed information on what you are trying to do, I can provide a more specific answer.
Here are some links to relevant information in the Gradle user guide:
I figured it out for my project setup. I use Android Studio running with the gradle plugin 0.9.+ with gradle 1.11 The main project uses amazon ads and amazon inapp purchases. It depends on a library project using amazon device messaging(ADM).
My main issue was with the the ADM where I got the "RuntimeException: Stub!" error.
1.) Library Project: The "provided configuration" proposed by Lukas does not work, as stated by him, so I used Richards approach, which however did not work as well out of the box. I had to change it a little since I could not find the lib in the ext_libs folder of the aar file. Gradle seems to pack all libraries in the libs folder in the in the final aar-file.
2.) Application Project : Here, the approach with the "provided configuration" worked.
In Gradle 2.12 a
compileOnly
configuration has been introduced. A blog post introducing this features can be found here:Gradle latest feature: Compile only dependencies
Please be aware of one important side effect:
If you use the WAR plugin, you can use
providedCompile
as in this exampleThere has been a lot of discussion regarding this topic, mainly here, but not clear conclusion.
You are on the right track: currently the best solution is to declare your own
provided
configuration, that will included compile-only dependencies and add to to your compile classpath:Typically this works well.