You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/11/19 19:30:34 UTC

git commit: TAP5-2226: Use maintained version of Kaptcha

Updated Branches:
  refs/heads/master 37262de47 -> 57f7db250


TAP5-2226: Use maintained version of Kaptcha


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/57f7db25
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/57f7db25
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/57f7db25

Branch: refs/heads/master
Commit: 57f7db250ce0f93ea4e9aedde30242d719cd2b30
Parents: 37262de
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Tue Nov 19 10:30:25 2013 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Tue Nov 19 10:30:25 2013 -0800

----------------------------------------------------------------------
 tapestry-kaptcha/NOTICE.txt   | 2 +-
 tapestry-kaptcha/build.gradle | 8 ++------
 2 files changed, 3 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/57f7db25/tapestry-kaptcha/NOTICE.txt
----------------------------------------------------------------------
diff --git a/tapestry-kaptcha/NOTICE.txt b/tapestry-kaptcha/NOTICE.txt
index 49df876..7013f30 100644
--- a/tapestry-kaptcha/NOTICE.txt
+++ b/tapestry-kaptcha/NOTICE.txt
@@ -3,4 +3,4 @@ The Apache Software Foundation (http://www.apache.org/).
 
 This product makes use of the Kaptcha library, which is released under under
 the terms of the Apache Software License 2.0.
-http://code.google.com/p/kaptcha/
+https://github.com/axet/kaptcha
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/57f7db25/tapestry-kaptcha/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-kaptcha/build.gradle b/tapestry-kaptcha/build.gradle
index a3677ba..c1dc5ed 100644
--- a/tapestry-kaptcha/build.gradle
+++ b/tapestry-kaptcha/build.gradle
@@ -1,16 +1,12 @@
-description = "Kaptcha image support"
+description = "Kaptcha user verification support"
 
 dependencies {
     compile project(':tapestry-core')
-    compile "com.google.code.kaptcha:kaptcha:2.3"
+    compile "com.github.axet:kaptcha:0.0.8"
     
     testCompile project(':tapestry-test')
 }
 
-repositories {
-  mavenRepo name: "HLS", url: "http://howardlewisship.com/repository/"
-}
-
 jar {
     manifest {
         attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.kaptcha.modules.KaptchaModule'