-
Notifications
You must be signed in to change notification settings - Fork 26
/
prj.el
56 lines (56 loc) · 1.9 KB
/
prj.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(jde-project-file-version "1.0")
(jde-set-variables
'(jde-electric-return-p t)
'(jde-enable-abbrev-mode t)
'(jde-gen-k&r t)
'(indent-tabs-mode t)
'(user-mail-address "[email protected]")
'(jde-import-auto-collapse-imports nil)
'(jde-import-auto-sort t)
'(jde-auto-parse-buffer-interval 600)
'(jde-global-classpath
(quote
(
"$JAVA_HOME/jre/lib/rt.jar"
"/tmp/classes/"
"$PROJECTS_HOME/tigase/server/libs/junit.jar"
"$PROJECTS_HOME/tigase/server/libs/jdbc-mysql.jar"
"$PROJECTS_HOME/tigase/server/libs/tigase-xmltools.jar"
"$PROJECTS_HOME/tigase/server/libs/tigase-utils.jar"
"$PROJECTS_HOME/tigase/server/libs/jml-1.0b2.jar"
)))
'(jde-sourcepath
(quote
(
"$PROJECTS_HOME/tigase/server/src/main/java"
"$PROJECTS_HOME/tigase/xmltools/src/main/java"
"$PROJECTS_HOME/tigase/utils/src/main/java"
"$PROJECTS_HOME/tigase/server/tests/unittests/src"
"$JAVA_HOME/share/src"
"$JAVA_HOME/share/tests/src"
)))
'(jde-gen-buffer-boilerplate
(quote
(
"/* Tigase Jabber/XMPP Server"
" * Copyright (C) 2004-2012 \"Artur Hefczyc\" <[email protected]>"
" *"
" * This program is free software: you can redistribute it and/or modify"
" * it under the terms of the GNU Affero General Public License as published by"
" * the Free Software Foundation, version 3 of the License."
" *"
" * This program is distributed in the hope that it will be useful,"
" * but WITHOUT ANY WARRANTY; without even the implied warranty of"
" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
" * GNU Affero General Public License for more details."
" *"
" * You should have received a copy of the GNU Affero General Public License"
" * along with this program. Look for COPYING file in the top folder."
" * If not, see http://www.gnu.org/licenses/."
" *"
" * $Rev: $"
" * Last modified by $Author: $"
" * $Date: $"
" */"
)))
)