From b593a097d2ada3ebda4a2440c256f8dae533cb7e Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Fri, 26 Sep 2014 16:13:51 +0000
Subject: [PATCH] #2021 feature - Added packaging to Maven building and command line commands [start|stop]

---
 securis/pom.xml |   20 +++++++++++++++++---
 1 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/securis/pom.xml b/securis/pom.xml
index a9933b3..5d78a37 100644
--- a/securis/pom.xml
+++ b/securis/pom.xml
@@ -1,8 +1,8 @@
 <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">
   <modelVersion>4.0.0</modelVersion>
   <groupId>net.curisit</groupId>
-  <artifactId>securis</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
+  <artifactId>securis-server</artifactId>
+  <version>0.0.2-SNAPSHOT</version>
   <name>SeCuris</name>
   <description>CurisTEC Server Licenses</description>
   <dependencies>
@@ -62,7 +62,21 @@
                 <target>1.7</target>
             </configuration>
         </plugin>
-		</plugins>
+		<plugin>
+				<artifactId>maven-assembly-plugin</artifactId>
+				<version>2.4</version>
+				<configuration>
+					<formats>
+						<format>zip</format>
+						<format>tar.gz</format>
+					</formats>
+					<descriptors>
+						<descriptor>etc/build/pro/mvn_descriptor.xml</descriptor>
+					</descriptors>
+					<appendAssemblyId>false</appendAssemblyId>
+				</configuration>
+			</plugin>
+			</plugins>
 	</build>
   <repositories>
     <repository>

--
Gitblit v1.3.2