Skip to content
New issue

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

Fix/java doc warnings gradle #36482

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@ public void codeGenForkOptions(Action<? super JavaForkOptions> action) {

/**
* Returns the last file from the specified {@link FileCollection}.
*
* @param fileCollection the collection of files present in the directory
* @return result returns the last file
*/
public static File getLastFile(FileCollection fileCollection) {
File result = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ public QuarkusDev(
/**
* The dependency Configuration associated with this task. Used
* for up-to-date checks
*
* @return quarkusDevConfiguration returns the configuration
*/
@SuppressWarnings("unused")
@CompileClasspath
Expand All @@ -151,6 +153,8 @@ public Configuration getQuarkusDevConfiguration() {

/**
* The JVM sources (Java, Kotlin, ..) for the project
*
* @return the FileCollection of all java source files present in the source directories
*/
@Optional
@InputFiles
Expand All @@ -161,6 +165,8 @@ public FileCollection getSources() {

/**
* The JVM classes directory (compilation output)
*
* @return the FileCollection of all java source files present in the source directories
*/
@Optional
@InputFiles
Expand All @@ -171,9 +177,11 @@ public FileCollection getCompilationOutput() {

/**
* The directory to be used as the working dir for the dev process.
*
* <p>
* Defaults to the main source set's classes directory. If there are
* multiple, one is picked at random (see {@link QuarkusPluginExtension#getLastFile}).
*
* @return workingDirectory
*/
@Input
public Property<File> getWorkingDirectory() {
Expand Down Expand Up @@ -204,6 +212,7 @@ public Property<Boolean> getPreventNoVerify() {
}

/**
* @return boolean value of getPreventNoVerify()
* @deprecated see {@link #getPreventNoVerify()}
*/
@SuppressWarnings("SpellCheckingInspection")
Expand Down
Loading