Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuhikoarase committed Aug 8, 2014
1 parent 0ae4314 commit 675c36b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/dist
2 changes: 1 addition & 1 deletion java/src/assets/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ DENSO WAVE INCORPORATED

-- REQUIREMENTS

Java Runtime Environment (JRE) 1.4 or above
Java Runtime Environment (JRE) 1.5 or above

-- CONTENTS

Expand Down
10 changes: 6 additions & 4 deletions java/src/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<target name="init">
<fail unless="env.SERVLET_API" message="environment variable SERVLET_API not set."/>
<property name="SERVLET_API" value="${env.SERVLET_API}"/>
<fail unless="env.JAVA5_BOOTSTRAP_CLASSPATH" message="environment variable JAVA5_BOOTSTRAP_CLASSPATH not set."/>
</target>

<target name="clean">
Expand All @@ -34,8 +34,10 @@
<mkdir dir="${build.java}"/>

<javac
classpath="${SERVLET_API}"
bootclasspath=""
source="1.5"
target="1.5"
bootclasspath="${env.JAVA5_BOOTSTRAP_CLASSPATH}"
classpath="${env.SERVLET_API}"
srcdir="${src.java}"
includes="**/*.java"
destdir="${build.java}"
Expand All @@ -52,7 +54,7 @@
<property name="doc.title" value="QRCode for Java"/>

<javadoc
classpath="${SERVLET_API}"
classpath="${env.SERVLET_API}"
encoding="UTF-8"
docencoding="UTF-8"
charset="UTF-8"
Expand Down

0 comments on commit 675c36b

Please sign in to comment.