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