Skip to content

Commit

Permalink
[APIS-1002] Change the build setup file from JDK 1.6 to 1.8 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
Srltas authored Sep 4, 2024
1 parent 4714937 commit fccbc9f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ message(STATUS "=========== JDBC ===========")

# check enviroment
include(FindJava)
find_package(Java 1.6 COMPONENTS Development)
find_package(Java 1.8 COMPONENTS Development)

find_program(ANT ant PATHS $ENV{ANT_HOME} ENV PATH)
if(NOT ANT)
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ REM
rem build script for MS Windows.
rem
rem Requirements
rem - jdk 1.6 or higher
rem - jdk 1.8 or higher
rem - build tools (ant)

set SHELL_PATH=%~dp0
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Build and package script for CUBRID JDBC Driver
# Requirements
# - Bash shell
# - JDK 1.6 or higher
# - JDK 1.8 or higher
# - Build tool - ANT

arg=$@
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</target>

<target name="compile-cubrid" depends="src-jar-cubrid">
<javac destdir="${bin-cubrid}" source="1.6" target="1.6" encoding="EUC-KR" debug="true" debuglevel="lines,source,vars" deprecation="off" includeantruntime="no">
<javac destdir="${bin-cubrid}" source="1.8" target="1.8" encoding="EUC-KR" debug="true" debuglevel="lines,source,vars" deprecation="off" includeantruntime="no">
<src path="${src-cubrid}"/>
</javac>
</target>
Expand Down

0 comments on commit fccbc9f

Please sign in to comment.