Repository: flex-utilities
Updated Branches:
  refs/heads/develop 027c892f1 -> 4eb6595be


Added the config to produce a stand-alone maven deployer


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/60c53552
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/60c53552
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/60c53552

Branch: refs/heads/develop
Commit: 60c53552f3a9388b2077738bddc90c47fd8f36cb
Parents: 50cbcaf
Author: Christofer Dutz <christofer.d...@codecentric.de>
Authored: Fri Jan 30 12:43:56 2015 +0100
Committer: Christofer Dutz <christofer.d...@codecentric.de>
Committed: Fri Jan 30 12:43:56 2015 +0100

----------------------------------------------------------------------
 mavenizer/deployers/maven/pom.xml | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/60c53552/mavenizer/deployers/maven/pom.xml
----------------------------------------------------------------------
diff --git a/mavenizer/deployers/maven/pom.xml 
b/mavenizer/deployers/maven/pom.xml
index ae85598..e06285d 100644
--- a/mavenizer/deployers/maven/pom.xml
+++ b/mavenizer/deployers/maven/pom.xml
@@ -32,4 +32,38 @@
     <version>1.0.0-SNAPSHOT</version>
     <packaging>jar</packaging>
 
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.4</version>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                            <addClasspath>true</addClasspath>
+                            
<mainClass>org.apache.flex.utilities.converter.deployer.maven.MavenDeployer</mainClass>
+                        </manifest>
+                        <manifestEntries>
+                            
<Implementation-Build>${project.version}</Implementation-Build>
+                        </manifestEntries>
+                    </archive>
+                    <descriptorRefs>
+                        <descriptorRef>jar-with-dependencies</descriptorRef>
+                    </descriptorRefs>
+                    
<finalName>maven-deployer-${project.version}-full</finalName>
+                    <appendAssemblyId>false</appendAssemblyId>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>

Reply via email to