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