Browse Source

Checkin servlet-api-2.5 jar and update demo ant scripts to compile java classes at 1.8 (#2491)

* Demo portal is hosted in Google appengine. As the new appengine-java-sdk do not include (appengine Java 11 runtime) any web-serving framework, we need to check-in the servlet-api-2.5 jar seperately in java/demo/war/WEB-INF/lib, similar to commons packages.

* Making ant to compile demo class files at 1.8
pull/2501/head
penmetsaa 5 years ago
committed by GitHub
parent
commit
55a443b4d4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions
  1. +1
    -1
      java/demo/build.xml
  2. BIN
      java/demo/war/WEB-INF/lib/servlet-api-2.5.jar

+ 1
- 1
java/demo/build.xml View File

@ -30,7 +30,7 @@
</fileset> </fileset>
</copy> </copy>
<javac srcdir="src" destdir="war/WEB-INF/classes" classpathref="project.classpath" debug="on" <javac srcdir="src" destdir="war/WEB-INF/classes" classpathref="project.classpath" debug="on"
includeAntRuntime="false"/>
includeAntRuntime="false" source="1.8" target="1.8"/>
</target> </target>
<target name="runserver" depends="compile" description="Starts the development server."> <target name="runserver" depends="compile" description="Starts the development server.">


BIN
java/demo/war/WEB-INF/lib/servlet-api-2.5.jar View File


Loading…
Cancel
Save