We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
nice project, thanks. It works fine for normal classes, e.g.
./gradlew resolveClass --classname=com.fasterxml.jackson.dataformat.xml.XmlMapper
> Task :resolveClass resolve class 'com.fasterxml.jackson.dataformat.xml.XmlMapper': +--- compileClasspath | `--- file:/Users/xxx/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.13.2/cb6a722f128ff0ce2494384d419b6ff20fad25ab/jackson-dataformat-xml-2.13.2.jar
But what if I want to look for an inner class like com.fasterxml.jackson.dataformat.xml.XmlMapper.Builder?
com.fasterxml.jackson.dataformat.xml.XmlMapper.Builder
./gradlew resolveClass --classname=com.fasterxml.jackson.dataformat.xml.XmlMapper$Builder
or
./gradlew resolveClass --classname=com.fasterxml.jackson.dataformat.xml.XmlMapper.Builder
both give an empty result.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
nice project, thanks. It works fine for normal classes, e.g.
But what if I want to look for an inner class like
com.fasterxml.jackson.dataformat.xml.XmlMapper.Builder
?or
both give an empty result.
The text was updated successfully, but these errors were encountered: