You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by dr...@apache.org on 2015/07/14 00:18:58 UTC

directory-kerby git commit: DIRKRB-359 Refine kdc-dist packaging

Repository: directory-kerby
Updated Branches:
  refs/heads/master ea347881e -> 1a0988743


DIRKRB-359 Refine kdc-dist packaging


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

Branch: refs/heads/master
Commit: 1a0988743e9bf6e68620e0bf772bd072a60285af
Parents: ea34788
Author: drankye <ka...@intel.com>
Authored: Tue Jul 14 06:18:41 2015 +0800
Committer: Drankye <dr...@gmail.com>
Committed: Tue Jul 14 06:18:41 2015 +0800

----------------------------------------------------------------------
 kerby-dist/kdc-dist/pom.xml | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/1a098874/kerby-dist/kdc-dist/pom.xml
----------------------------------------------------------------------
diff --git a/kerby-dist/kdc-dist/pom.xml b/kerby-dist/kdc-dist/pom.xml
index e3b3530..829740e 100644
--- a/kerby-dist/kdc-dist/pom.xml
+++ b/kerby-dist/kdc-dist/pom.xml
@@ -32,6 +32,26 @@
       <artifactId>kerby-kdc</artifactId>
       <version>${project.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-server-api-all</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>zookeeper-backend</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>json-backend</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>${slf4j.version}</version>
+    </dependency>
   </dependencies>
 
   <profiles>
@@ -39,6 +59,23 @@
       <id>dist</id>
       <build>
         <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-dependency-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>copy</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>copy-dependencies</goal>
+                </goals>
+                <configuration>
+                  <outputDirectory>lib</outputDirectory>
+                  <excludeTransitive>false</excludeTransitive>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
       </build>
     </profile>