Skip to content

couchbase_password_issue #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3cf516c
Update dependencies to be compatible with CDH4.
ingenthr Oct 22, 2012
1a97028
Update connector to version 1.1-dp3.
ingenthr Oct 22, 2012
2a68546
Update metadata for dp5.
ingenthr Aug 29, 2014
4b2054f
Update dependencies for CDH5 port.
ingenthr Sep 9, 2014
7833a88
Remove un-needed HBase dependency. It was a compile time problem too.
ingenthr Sep 9, 2014
4f24d81
Update to later validateKey() method. Private method changed.
ingenthr Sep 9, 2014
ae8e72a
Update run-time dependencies for CDH5
avsej Sep 9, 2014
d7f5211
Override unused test
avsej Sep 9, 2014
e32d183
Set java source and target to 1.6.
ingenthr Sep 21, 2014
d48a656
Depend on special 1.4.4 build with bundled httpcore.
ingenthr Sep 21, 2014
9e31311
Fix shebang on install.sh
ingenthr Sep 21, 2014
9618a00
Adding IntelliJ settings which are appropriate for version control.
ingenthr Sep 21, 2014
42ae2c6
Break out import test into authd/default.
ingenthr Sep 21, 2014
3edb06b
Do not destroy the .idea/ dir on ant clean.
ingenthr Sep 21, 2014
bf458d8
CBHADOOP-13: Fix for password handling.
ingenthr Sep 21, 2014
b060d9e
gitignore packaged files for install.
ingenthr Sep 21, 2014
86db90e
Make IJ happy by having a local utils for stresstest.
ingenthr Sep 21, 2014
4e9621e
Update of IJ configuration files after import.
ingenthr Sep 21, 2014
f391042
Correct param in test case on CouchbaseAuthdBucketManagerTest.
ingenthr Sep 21, 2014
97fbb25
Update connector to version 1.2-beta.
ingenthr Sep 29, 2014
f241298
Update connector to version 1.2.0 for GA.
ingenthr Oct 5, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set java source and target to 1.6.
Change-Id: I4dfea5be19bc5f4ca4ae798ccd2952fc328c4af1
  • Loading branch information
ingenthr committed Sep 21, 2014
commit e32d1831b4baad4da55dc6c321d6e41db330533b
10 changes: 7 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright 2011-2012 Couchbase, Inc.
Copyright 2011-2014 Couchbase, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -189,7 +189,9 @@
includes="**/*.java"
destdir="${build.classes}"
debug="${javac.debug}"
deprecation="${javac.deprecation}">
deprecation="${javac.deprecation}"
target="1.6"
source="1.6">
<classpath refid="${name}.common.classpath" />
</javac>
</target>
Expand All @@ -203,7 +205,9 @@
srcdir="${test.dir}"
includes="**/*.java"
destdir="${build.test.classes}"
debug="${javac.debug}">
debug="${javac.debug}"
target="1.6"
source="1.6">
<classpath>
<path refid="test.classpath"/>
</classpath>
Expand Down