You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pl...@apache.org on 2015/11/20 04:13:27 UTC

[1/2] directory-kerby git commit: Add the mvn dependency in README.md.

Repository: directory-kerby
Updated Branches:
  refs/heads/master b0718339f -> 9063089c0


Add the mvn dependency in README.md.


Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/3fc67063
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/3fc67063
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/3fc67063

Branch: refs/heads/master
Commit: 3fc67063dd185228781724ba8e16b37e79f779ef
Parents: a902861
Author: plusplusjiajia <ji...@intel.com>
Authored: Fri Nov 20 11:18:45 2015 +0800
Committer: plusplusjiajia <ji...@intel.com>
Committed: Fri Nov 20 11:18:45 2015 +0800

----------------------------------------------------------------------
 README.md | 45 +++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 41 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/3fc67063/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 1b37c72..ae5b55f 100644
--- a/README.md
+++ b/README.md
@@ -124,16 +124,53 @@ A standalone KDC server that can integrate various identity back ends including:
 - [Netty](http://netty.io/), needed by netty based KDC server.
 - [Zookeeper](https://zookeeper.apache.org/), needed by zookeeper identity backend.
 
+
+### How to use library
+The Apache Kerby is also available as a Maven dependency:
+- Kerby Client API:
+```
+<dependency>
+    <groupId>org.apache.kerby</groupId>
+    <artifactId>kerb-client-api-all</artifactId>
+    <version>1.0.0-RC1</version>
+</dependency>
+```
+
+- Kerby Server API:
+```
+<dependency>
+    <groupId>org.apache.kerby</groupId>
+    <artifactId>kerb-server-api-all</artifactId>
+    <version>1.0.0-RC1</version>
+</dependency>
+```
+
+- Kerby ASN1:
+```
+<dependency>
+    <groupId>org.apache.kerby</groupId>
+    <artifactId>kerby-asn1</artifactId>
+    <version>1.0.0-RC1</version>
+</dependency>
+```
+
+- Kerby Simple KDC:
+```
+<dependency>
+    <groupId>org.apache.kerby</groupId>
+    <artifactId>kerb-simplekdc</artifactId>
+    <version>1.0.0-RC1</version>
+</dependency>
+```
+
 ### License
 Apache License V2.0
 
 ### How to contribute
 - Git repo in Apache: https://git-wip-us.apache.org/repos/asf/directory-kerby.git
 - Umbrella JIRA: it's tracked in the master JIRA [DIRKRB-102](https://issues.apache.org/jira/browse/DIRKRB-102), and find tasks there.
-
-### Mailing lists
-- The Directory Developers List: dev-subscribe@directory.apache.org
-- The Kerby List: kerby-subscribe@directory.apache.org
+- The Directory Developers List: dev@directory.apache.org [Subscribe](dev-subscribe@directory.apache.org)
+- The Kerby Developers List: kerby@directory.apache.org [Subscribe](kerby-subscribe@directory.apache.org)
 
 ### Downloads
 - [Version 1.0.0-RC1](https://directory.apache.org/kerby/download/download-sources.html)


[2/2] directory-kerby git commit: Merge remote-tracking branch 'asf/master'

Posted by pl...@apache.org.
Merge remote-tracking branch 'asf/master'


Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/9063089c
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/9063089c
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/9063089c

Branch: refs/heads/master
Commit: 9063089c0347004b8200d2f8b6387fd061fd3011
Parents: 3fc6706 b071833
Author: plusplusjiajia <ji...@intel.com>
Authored: Fri Nov 20 11:19:48 2015 +0800
Committer: plusplusjiajia <ji...@intel.com>
Committed: Fri Nov 20 11:19:48 2015 +0800

----------------------------------------------------------------------
 .../main/java/org/apache/kerby/config/Conf.java |   4 +-
 .../java/org/apache/kerby/config/Config.java    |   2 +-
 .../org/apache/kerby/config/ConfigImpl.java     |   6 +-
 .../kerby/kerberos/kerb/client/KrbConfig.java   |  85 +++++-----
 .../kerberos/kerb/client/KrbConfigKey.java      |  60 +++-----
 .../kerby/kerberos/kerb/common/Krb5Conf.java    | 154 +++++++++++++++++++
 .../kerberos/kerb/common/KrbConfHelper.java     | 107 -------------
 .../kerberos/kerb/common/SectionConfigKey.java  |  31 ----
 .../kerby/kerberos/kerb/server/KdcConfig.java   |  80 ++++------
 .../kerberos/kerb/server/KdcConfigKey.java      |  44 ++----
 10 files changed, 265 insertions(+), 308 deletions(-)
----------------------------------------------------------------------