-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
prj.el
40 lines (38 loc) · 1.31 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
!!!
!!! Tigase Utils - Utilities module
!!! Copyright (C) 2004 Tigase, Inc. (office@tigase.com)
!!!
!!! 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/.
!!!
(jde-project-file-version "1.0")
(jde-set-variables
'(jde-electric-return-p t)
'(jde-enable-abbrev-mode t)
'(jde-global-classpath
(quote
(
"$JAVA_HOME/jre/lib/rt.jar"
"$PROJECTS_HOME/tigase/utils/classes/"
"$PROJECTS_HOME/tigase/utils/libs/junit.jar")))
'(jde-sourcepath
(quote
(
"$PROJECTS_HOME/tigase/utils/src"
"$PROJECTS_HOME/tigase/utils/tests/unittests/src"
"$JAVA_HOME/share/src"
"$JAVA_HOME/share/tests/src")))
'(jde-gen-k&r t)
'(user-mail-address "artur.hefczyc@tigase.org")
'(indent-tabs-mode t)
)