# HG changeset patch # User tbell # Date 1244781049 25200 # Node ID 3130ead31447762152e066dfa23e8df2179b93a7 # Parent dbb955b1ee59b876dd1f133952b557b48b1d7732# Parent 170fb87a3dd1b9d187dd4fd716834c3882c53919 Merge diff -r dbb955b1ee59 -r 3130ead31447 jaxws/make/Makefile --- a/jaxws/make/Makefile Wed Jul 05 16:54:26 2017 +0200 +++ b/jaxws/make/Makefile Thu Jun 11 21:30:49 2009 -0700 @@ -83,6 +83,14 @@ endif endif +ifdef SOURCE_LANGUAGE_VERSION + ANT_OPTIONS += -Djavac.source=$(SOURCE_LANGUAGE_VERSION) +else + ifdef JAVAC_SOURCE_ARG + ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG) + endif +endif + ifdef ALT_BOOTDIR ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR) endif diff -r dbb955b1ee59 -r 3130ead31447 jaxws/make/build.properties --- a/jaxws/make/build.properties Wed Jul 05 16:54:26 2017 +0200 +++ b/jaxws/make/build.properties Thu Jun 11 21:30:49 2009 -0700 @@ -30,6 +30,7 @@ # one of the standard user build.properties files (see build.xml) # options for the tasks used to compile the tools +javac.source = 5 javac.target = 5 javac.debug = true javac.no.jdk.warnings = -XDignore.symbol.file=true diff -r dbb955b1ee59 -r 3130ead31447 jaxws/make/build.xml --- a/jaxws/make/build.xml Wed Jul 05 16:54:26 2017 +0200 +++ b/jaxws/make/build.xml Thu Jun 11 21:30:49 2009 -0700 @@ -107,6 +107,7 @@ destdir="${build.classes.dir}" memoryInitialSize="${javac.memoryInitialSize}" memoryMaximumSize="${javac.memoryMaximumSize}" + source="${javac.source}" debug="${javac.debug}" target="${javac.target}" excludes="com/sun/tools/internal/txw2/**">