File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
src/com/beer/business/service Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" iso-8859-1" ?>
2
+ <project name =" mybuild" default =" all" basedir =" ." >
3
+
4
+ <property name =" classes.dir" value =" classes" />
5
+ <property name =" src.dir" value =" src" />
6
+
7
+ <path id =" project.class.path" >
8
+ <pathelement location =" ." />
9
+ <pathelement location =" ${classes.dir}" />
10
+ </path >
11
+
12
+ <target name =" all" depends =" compile-src" >
13
+ </target >
14
+
15
+ <target name =" compile-src" >
16
+ <mkdir dir =" ${classes.dir}" />
17
+ <javac destdir =" ${classes.dir}" debug =" true" >
18
+ <src path =" ${src.dir}" />
19
+ <classpath refid =" project.class.path" />
20
+ </javac >
21
+ </target >
22
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .beer .business .service ;
2
+
3
+ public class MyDrink {
4
+
5
+ public void runThisBranch () {
6
+ System .out .println ("test" );
7
+ }
8
+
9
+ }
You can’t perform that action at this time.
0 commit comments