You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: drjava/README
+23-9Lines changed: 23 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -14,30 +14,44 @@ http://drjava.sf.net/devdocs/
14
14
QuickStart Guilde For Building DrJava
15
15
by Corky Cartwright (cork@rice.edu)
16
16
17
-
The following guide presumes that you already have a Java 5.0 or 6.0 SDK, subversion (svn) 1.4 or above, and ant 1.7 or above installed on your machine. If not, follow the instructions at http://www.drjava.org/devdocs/ for setting up a DrJava development environment.
17
+
The following guide presumes that you already have the following
18
+
software systems installed on your system and accessible via your
19
+
shell search path:
18
20
19
-
1) Make a directory to be the top-level container for you drjava code tree. I recommend "drjava".
21
+
* Java 5.0 or 6.0 SDK,
22
+
* subversion (svn) 1.4 or above, and
23
+
* ant 1.7 or above.
24
+
25
+
If not, follow the instructions at http://www.drjava.org/devdocs/ for
26
+
setting up a DrJava development environment.
27
+
28
+
1) Make a directory to be the top-level container for you drjava code
29
+
tree. I recommend "drjava".
20
30
21
31
2) Descend into this new directory by typing the command
22
32
23
-
cd ~/drjava
33
+
cd ~/drjava
24
34
25
35
3) Download the drjava source code base by typing the command
26
36
27
-
svn co https://drjava.svn.sourceforge.net/svnroot/drjava/trunk/drjava
37
+
svn co https://drjava.svn.sourceforge.net/svnroot/drjava/trunk/drjava
28
38
29
-
4) After this download completes, descend into the root directory of the dowloaded code base by typing the command
39
+
4) After this download completes, descend into the root directory of
40
+
the dowloaded code base by typing the command
30
41
31
-
cd ~/drjava
42
+
cd ~/drjava
32
43
33
-
5) To compile the code base and generate a jar file containing the compiled program, enter the command
44
+
5) To compile the code base and generate a jar file containing the
45
+
compiled program, enter the command
34
46
35
47
ant jar
36
48
37
49
which builds a jar filed named drjava-15.jar
38
50
39
-
If the build is successful, you can execute the built program by entering the command
51
+
If the build is successful, you can execute the built program by
52
+
entering the command
40
53
41
54
java -jar drjava-15.jar
42
55
43
-
If you encounter any problems, consult the Developer Docs at drjava.org by visiting http://www.drjava.org/devdocs/.
56
+
If you encounter any problems, consult the Developer Docs at
57
+
drjava.org by visiting http://www.drjava.org/devdocs/.
0 commit comments