Repository: directory-kerby
Updated Branches:
refs/heads/pkinit-support c98ab976a -> 08dd8ce59
DIRKRB-441 Add the kerby-cms module in project.
Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/08dd8ce5
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/08dd8ce5
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/08dd8ce5
Branch: refs/heads/pkinit-support
Commit: 08dd8ce59ed8fb87614b42241c0a482caccbc043
Parents: c98ab97
Author: plusplusjiajia <jiajia.li@intel.com>
Authored: Wed Nov 4 14:50:11 2015 +0800
Committer: plusplusjiajia <jiajia.li@intel.com>
Committed: Wed Nov 4 14:50:11 2015 +0800
----------------------------------------------------------------------
kerby-cms/pom.xml | 42 ++++++++++++++++++++++++++++++++++++++++++
pom.xml | 1 +
2 files changed, 43 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/08dd8ce5/kerby-cms/pom.xml
----------------------------------------------------------------------
diff --git a/kerby-cms/pom.xml b/kerby-cms/pom.xml
new file mode 100644
index 0000000..f3cccd4
--- /dev/null
+++ b/kerby-cms/pom.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License. See accompanying LICENSE file.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <parent>
+ <artifactId>kerby-all</artifactId>
+ <groupId>org.apache.kerby</groupId>
+ <version>1.0.0-RC2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+
+ <artifactId>kerby-cms</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.kerby</groupId>
+ <artifactId>kerby-asn1</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.kerby</groupId>
+ <artifactId>kerb-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ </dependencies>
+
+
+</project>
\ No newline at end of file
http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/08dd8ce5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a5ed5d8..f870dc2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -75,6 +75,7 @@
<module>kerby-dist</module>
<module>benchmark</module>
<module>kerby-provider</module>
+ <module>kerby-cms</module>
</modules>
<dependencies>
|