3bca76
_m2_make_goals()
3bca76
{
3bca76
  plugin=$1
3bca76
  mojos=$2
3bca76
  for mojo in $mojos
3bca76
  do
3bca76
    export goals="$goals $plugin:$mojo"
3bca76
  done
3bca76
}
3bca76
3bca76
_m2_complete()
3bca76
{
3bca76
  local cur goals
3bca76
3bca76
  COMPREPLY=()
3bca76
  cur="${COMP_WORDS[COMP_CWORD]}"
3bca76
  prev="${COMP_WORDS[COMP_CWORD-1]}"
3bca76
3bca76
  case "${prev}" in
3bca76
       -f | --file|-l|--log-file)
3bca76
              COMPREPLY=( $(compgen -f ${cur}) )
3bca76
              return 0
3bca76
       ;;
3bca76
       *);;
3bca76
  esac
3bca76
3bca76
3bca76
  goals='clean compile test install package deploy site verify'
3bca76
  if [[ ${cur} == -* ]] ; then
3bca76
     goals="$goals -am --also-make
3bca76
                   -amd --also-make-dependents
3bca76
                   -B --batch-mode
3bca76
                   -C --strict-checksums
3bca76
                   -c --lax-checksums
3bca76
                   -cpu --check-plugin-updates
3bca76
                   -D --define
3bca76
                   -e --errors
3bca76
                   -emp --encrypt-master-password
3bca76
                   -ep --encrypt-password
3bca76
                   -f --file
3bca76
                   -fae --fail-at-end
3bca76
                   -ff --fail-fast
3bca76
                   -fn --fail-never
3bca76
                   -gs --global-settings
3bca76
                   -h --help
3bca76
                   -l --log-file
3bca76
                   -N --non-recursive
3bca76
                   -npr --no-plugin-registry
3bca76
                   -npu --no-plugin-updates
3bca76
                   -nsu --no-snapshot-updates
3bca76
                   -o --offline
3bca76
                   -P --activate-profiles
3bca76
                   -pl --projects
3bca76
                   -q --quiet
3bca76
                   -rf --resume-from
3bca76
                   -s --settings
3bca76
                   -T --threads
3bca76
                   -t --toolchains
3bca76
                   -U --update-snapshots
3bca76
                   -up --update-plugins
3bca76
                   -V --show-version
3bca76
                   -v --version
3bca76
                   -X --debug
3bca76
                   -Dmaven.test.skip=true
3bca76
                   -Dmaven.compiler.source=1.5
3bca76
                   -Dmaven.compiler.source=1.6
3bca76
                   -Dmaven.compiler.source=1.7
3bca76
                   -Dmaven.compiler.target=1.5
3bca76
                   -Dmaven.compiler.target=1.6
3bca76
                   -Dmaven.compiler.target=1.7
3bca76
                   -Dproject.build.sourceEncoding=UTF-8
3bca76
                   -Dmaven.repo.local=
3bca76
                   -Dmaven.local.depmap.file=
3bca76
                   -Dmaven.local.debug=true
3bca76
                   -Dmaven.local.mode=true"
3bca76
  fi
3bca76
3bca76
  goals=$goals _m2_make_goals "eclipse" "eclipse"
3bca76
  goals=$goals _m2_make_goals "idea" "idea"
3bca76
  goals=$goals _m2_make_goals "assembly" "assembly"
3bca76
  goals=$goals _m2_make_goals "plexus" "app bundle-application bundle-runtime descriptor runtime service"
3bca76
  goals=$goals _m2_make_goals "dependency" "analyze analyze-dep-mgt analyze-only analyze-report analyze-duplicate
3bca76
                                           build-classpath copy copy-dependencies get go-offline list properties
3bca76
                                           purge-local-repository resolve resolve-plugins sources tree unpack
3bca76
                                           unpack-dependencies"
3bca76
  cur=`echo $cur | sed 's/\\\\//g'`
3bca76
  COMPREPLY=($(compgen -W "${goals}" -- ${cur} | sed 's/\\\\//g') )
3bca76
}
3bca76
3bca76
complete -F _m2_complete -o filenames mvn