PageRenderTime 23ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/emacs-lisp-mode/prj

http://github.com/ridgetang/snippets
#! | 19 lines | 16 code | 3 blank | 0 comment | 0 complexity | f7ce03c226cb971a5d064e8308c61446 MD5 | raw file
  1. # -*- mode: snippet -*-
  2. # name : JDE Project File Content
  3. # key : prj
  4. # group : jde
  5. # contributor : crazycode@gmail.com
  6. # --
  7. (jde-project-file-version "1.0")
  8. (jde-set-variables
  9. '(jde-build-function (quote (jde-mvn-build)))
  10. '(jde-compile-option-command-line-args
  11. (quote ("-Xlint:all" "-Xlint:-serial"))))
  12. (with-pom ()
  13. (jde-mvn-set-jde-variables :include-dependency-sources))
  14. ;; Map C-c C-v C-t to run current test
  15. (define-key jde-mode-map [remap jde-jdb-menu-debug-applet]
  16. 'jde-mvn-build-run-test)