Skip navigation links
A C D E G I L N P S U W 

A

AbstractMojo - Class in com.github.ug_dbg
A mojo with a given log level that can be set using a property parameter.
AbstractMojo() - Constructor for class com.github.ug_dbg.AbstractMojo
 
addArguments(CommandLine) - Method in class com.github.ug_dbg.NpmMojo
 
addCommand(CommandLine) - Method in class com.github.ug_dbg.AngularMojo
 
addCommand(CommandLine) - Method in class com.github.ug_dbg.NpmMojo
 
addCommand(CommandLine) - Method in class com.github.ug_dbg.NpmRunAllMojo
 
AngularMojo - Class in com.github.ug_dbg
Goal which executes Angular ng command.
AngularMojo() - Constructor for class com.github.ug_dbg.AngularMojo
 
args - Variable in class com.github.ug_dbg.AngularMojo
The arguments to pass to ng command.
args - Variable in class com.github.ug_dbg.NpmMojo
The arguments to pass to npm command.
args - Variable in class com.github.ug_dbg.NpmRunAllMojo
The arguments to pass as npm commands.

C

CleanMojo - Class in com.github.ug_dbg
Goal to clean an npm workspace.
CleanMojo() - Constructor for class com.github.ug_dbg.CleanMojo
 
com.github.ug_dbg - package com.github.ug_dbg
 
command - Variable in class com.github.ug_dbg.AngularMojo
The ng command to execute, such as 'build', 'serve', etc.
command - Variable in class com.github.ug_dbg.NpmMojo
The npm command to execute, such as 'install', 'test', etc.
command - Variable in class com.github.ug_dbg.NpmRunAllMojo
An npm command to execute on each arg, such as 'install', 'test', etc.

D

debugPrefix - Variable in class com.github.ug_dbg.LogHandler
 
delete(File) - Method in class com.github.ug_dbg.CleanMojo
Delete a file and log the deletion status.
deleteNodeModules - Variable in class com.github.ug_dbg.CleanMojo
If 'true', delete the node-modules directory.
deletePackageLock - Variable in class com.github.ug_dbg.CleanMojo
If 'true', delete the package-lock file.
distDir - Variable in class com.github.ug_dbg.CleanMojo
The npm dist directory name.

E

errPrefix - Variable in class com.github.ug_dbg.LogHandler
 
execute() - Method in class com.github.ug_dbg.AngularMojo
 
execute(CommandLine) - Method in class com.github.ug_dbg.AngularMojo
 
execute() - Method in class com.github.ug_dbg.CleanMojo
 
execute() - Method in class com.github.ug_dbg.NpmMojo
 
execute(CommandLine) - Method in class com.github.ug_dbg.NpmMojo
 
execute(CommandLine, File, boolean, Log, Level) - Static method in class com.github.ug_dbg.NpmMojo
 
execute() - Method in class com.github.ug_dbg.NpmRunAllMojo
 
execute(CommandLine) - Method in class com.github.ug_dbg.NpmRunAllMojo
 

G

getCommand(String, File) - Static method in class com.github.ug_dbg.AbstractMojo
 
getNGCommand() - Method in class com.github.ug_dbg.AngularMojo
 
getNpmCommand() - Method in class com.github.ug_dbg.NpmMojo
 
getNpmCommand() - Method in class com.github.ug_dbg.NpmRunAllMojo
 

I

isDebug(String) - Method in class com.github.ug_dbg.LogHandler
 
isError(String) - Method in class com.github.ug_dbg.LogHandler
 
isWarn(String) - Method in class com.github.ug_dbg.LogHandler
 
isWindows() - Static method in class com.github.ug_dbg.AbstractMojo
 

L

logDefault(String) - Method in class com.github.ug_dbg.LogHandler
Implement to chose the default log level for an input line.
logDefault(String) - Method in class com.github.ug_dbg.LogHandler.StdErr
 
logDefault(String) - Method in class com.github.ug_dbg.LogHandler.StdOut
 
logger - Variable in class com.github.ug_dbg.LogHandler
 
LogHandler - Class in com.github.ug_dbg
A handler to write what is read from an output stream (e.g. std.out or std.err) into a logger.
LogHandler(Log, Level, String, String, String) - Constructor for class com.github.ug_dbg.LogHandler
 
LogHandler.StdErr - Class in com.github.ug_dbg
Implementation that logs default line to 'warn' : that kinda suits the std.err output.
LogHandler.StdOut - Class in com.github.ug_dbg
Implementation that logs default line to 'info' : that kinda suits the std.out output.
logLevel - Variable in class com.github.ug_dbg.AbstractMojo
Log level of the Mojo logger.
logLevel() - Method in class com.github.ug_dbg.AbstractMojo
 

N

ngHome - Variable in class com.github.ug_dbg.AngularMojo
The directory that contains ng executable.
nodeModulesDir - Variable in class com.github.ug_dbg.CleanMojo
The node modules dir.
npmHome - Variable in class com.github.ug_dbg.NpmMojo
The directory that contains npm executable.
npmHome - Variable in class com.github.ug_dbg.NpmRunAllMojo
The directory that contains npm executable.
NpmMojo - Class in com.github.ug_dbg
Goal which executes npm.
NpmMojo() - Constructor for class com.github.ug_dbg.NpmMojo
 
NpmRunAllMojo - Class in com.github.ug_dbg
Goal which executes all arguments as npm commands.
NpmRunAllMojo() - Constructor for class com.github.ug_dbg.NpmRunAllMojo
 

P

packageLockFile - Variable in class com.github.ug_dbg.CleanMojo
The package-lock.
parseArgument(String) - Static method in class com.github.ug_dbg.AbstractMojo
Parse an argument as an arguments String, with respect to quoted ("") elements.
processLine(String, int) - Method in class com.github.ug_dbg.LogHandler
 

S

StdErr(Log, Level, String, String, String) - Constructor for class com.github.ug_dbg.LogHandler.StdErr
 
StdOut(Log, Level, String, String, String) - Constructor for class com.github.ug_dbg.LogHandler.StdOut
 

U

useLogHandler - Variable in class com.github.ug_dbg.AbstractMojo
If true, try to redirect the NPM output to a log handler so it integrates nicely into maven output.
useLogHandler() - Method in class com.github.ug_dbg.AbstractMojo
Should we try to redirect the NPM output to a log handler so it integrates nicely into maven output ?

W

warnPrefix - Variable in class com.github.ug_dbg.LogHandler
 
workingDir - Variable in class com.github.ug_dbg.AngularMojo
The working directory.
workingDir - Variable in class com.github.ug_dbg.CleanMojo
The working directory.
workingDir - Variable in class com.github.ug_dbg.NpmMojo
The working directory.
workingDir - Variable in class com.github.ug_dbg.NpmRunAllMojo
The working directory.
A C D E G I L N P S U W 
Skip navigation links

Copyright © 2020. All rights reserved.