Slackbot
03/15/2022, 7:44 PMephemient
03/15/2022, 7:56 PMsmokeTestephemient
03/15/2022, 7:59 PMsourceSet to have a implementation, api, etc. configuration, using those for the Java compilationJendrik Johannes
03/15/2022, 8:59 PMCan something useful be done with custom configurations without Ant?Yes. It has nothing to do with Ant actually… If you want to understand the concept better (shameless plug): You can jump to min 8, where I start talking about the “Configuration” concept. Basically, when you have a custom configuration like “smokeTest” you need some place where you use (i.e. resolve) it. Usually you set it as an input to a task. The task will then treat it as a “collection of files” and as soon as Gradle gets to the point where the task needs the files, it will “resolve” the dependencies (interprete the metadata / download the Jars). In your example, you would probably set “smokeTest” as the
classpath of a Test Task.Beat Kappert
08/29/2022, 3:35 PM