Closed marchc closed 5 years ago
Hi, unfortunately there isn't a way to do this which would both be backward-compatible with Gradle 4 and forward-compatible with Gradle 6. Gradle 4 is still in widespread usage so I'm not quite willing to give up the compatibility yet. I'm considering to either create a fork that stays Gradle4-compatible, or to declare a version which is the last supported one for Gradle 4.
Hi No worries I understand, gradle 6 is a way off currently so not likely to create me problem in the short term.
Thanks for the response
@marchc @tkrullmann Gradle 6 is now in RC1 so it is probably not that way off. I would strongly consider implementing one of your two ideas @tkrullmann, as the improvements to dependency management in Gradle 6 will likely be a strong incentive for people to upgrade.
Opened a new issue for this: #92
Actually when I use the plugin with Gradle 6.0-rc-1, all the deprecations that were "scheduled to be removed in Gradle 6.0" are now "scheduled to be removed in Gradle 7.0" ;-)
Hi
We are getting the following warning using the atest version 2.2.0 with gradle 5.6.2 running under intelij
We are using a simple configuration
The warning relates to the integrationTest line.
Is there a different way of describing the test set that is forward compatible?
The gradle build file: `
buildscript { repositories { jcenter() mavenCentral() maven { setUrl('https://plugins.gradle.org/m2/') } } dependencies { classpath 'com.github.fgiannesini.libsass.gradle.plugin:libsass-gradle-plugin:+' classpath 'org.apache.cxf.xjcplugins:cxf-xjc-javadoc:3.0.5' classpath 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' classpath 'org.jvnet.jaxb2_commons:jaxb2-fluent-api:3.0' classpath 'org.slf4j:slf4j-simple:1.7.22' // wsdl2java classpath group: 'no.nils', name: 'wsdl2java', version: '0.8' classpath group: 'javax.activation', name: 'activation', version: '1.1.1' classpath group: 'javax.jws', name: 'jsr181-api', version: '1.0-MR1' classpath group: 'javax.xml.bind', name: 'jaxb-api', version: '2.4.0-b180830.0359' classpath group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1' classpath group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0.1' classpath group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.4.0-b180830.0438' classpath group: 'com.sun.xml.bind', name: 'jaxb-xjc', version: '2.4.0-b180830.0438' } }
plugins { id 'org.sonarqube' version '2.6.2' id 'org.unbroken-dome.test-sets' version '2.2.0' }
wrapper { gradleVersion = '5.6.2' }
subprojects { apply plugin: 'idea' apply plugin: 'java' apply plugin: 'maven-publish' apply plugin: 'org.unbroken-dome.test-sets'
}
`