Skip to content

Commit

Permalink
Add support for last svnkit version (1.8.6)
Browse files Browse the repository at this point in the history
- Required for TLS support (SSLv3 Poodle vulnerability)
- svnkit 1.8.6 used by create-vanilla-SCDB.sh

Fixes #28.
  • Loading branch information
jouvin committed Oct 17, 2014
1 parent ce8b29f commit c6c3266
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions quattor.build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@

<!-- svnkit -->
<property name="svnkit" location="${external}/svnkit" />
<property name="svnkit.jar" location="${svnkit}/svnkit.jar" />
<property name="svnkit-javahl.jar" location="${svnkit}/svnkit-javahl.jar" />
<property name="svnkit.lib" location="${svnkit}/lib" />

<!-- panc (java version) -->
<property name="panc" location="${external}/panc" />
Expand Down Expand Up @@ -165,8 +164,9 @@
<taskdef resource="org/quattor/ant/quattor-ant.xml">
<classpath>
<pathelement path="${quattor.jar}" />
<pathelement path="${svnkit.jar}" />
<pathelement path="${svnkit-javahl.jar}" />
<fileset dir="${svnkit.lib}">
<include name="*.jar"/>
</fileset>
</classpath>
</taskdef>

Expand Down
2 changes: 1 addition & 1 deletion utils/scdb/create-vanilla-SCDB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ scdb_external_list="ant panc scdb-ant-utils svnkit"
panc_version=panc-10.1
ant_version=apache-ant-1.7.1
scdb_ant_utils_version=scdb-ant-utils-9.0.2
svnkit_version=svnkit-1.3.5
svnkit_version=svnkit-1.8.6

# scdb source is typically a clone of GitHub scdb repo, switched to the appropriate
# version/branch. By default, the root of the clone is 2 level upper than the directory
Expand Down

0 comments on commit c6c3266

Please sign in to comment.