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/03/11 22:48:22 UTC

[09/14] directory-kerberos git commit: DIRKRB-161 Packing related jars as Kerberos server library for applications

DIRKRB-161 Packing related jars as Kerberos server library for applications


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

Branch: refs/heads/installation
Commit: e553841c9c1b7f2bccfd05ec0cfc51b6c8c3ceae
Parents: daa4ba5
Author: hazel <li...@foxmail.com>
Authored: Mon Mar 9 13:29:21 2015 +0800
Committer: hazel <li...@foxmail.com>
Committed: Mon Mar 9 13:29:21 2015 +0800

----------------------------------------------------------------------
 kerby-kerb/kerb-server/pom.xml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerberos/blob/e553841c/kerby-kerb/kerb-server/pom.xml
----------------------------------------------------------------------
diff --git a/kerby-kerb/kerb-server/pom.xml b/kerby-kerb/kerb-server/pom.xml
index f19efc1..102cc09 100644
--- a/kerby-kerb/kerb-server/pom.xml
+++ b/kerby-kerb/kerb-server/pom.xml
@@ -58,4 +58,28 @@
       <version>${project.version}</version>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.2</version>
+        <executions>
+          <execution>
+            <id>package-all</id>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <configuration>
+              <descriptorRefs>
+                <descriptorRef>jar-with-dependencies</descriptorRef>
+              </descriptorRefs>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>