Author: josebarragan
Date: Tue Dec 11 11:38:23 2012
New Revision: 1420103
URL: http://svn.apache.org/viewvc?rev=1420103&view=rev
Log:
[FLEX-33291] Fixed.
https://issues.apache.org/jira/browse/FLEX-33291
Maven assembly plugin included in pom, for includes the missing dependencies in
output jar.
Modified:
incubator/flex/utilities/trunk/mavenizer/pom.xml
Modified: incubator/flex/utilities/trunk/mavenizer/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/flex/utilities/trunk/mavenizer/pom.xml?rev=1420103&r1=1420102&r2=1420103&view=diff
==============================================================================
--- incubator/flex/utilities/trunk/mavenizer/pom.xml (original)
+++ incubator/flex/utilities/trunk/mavenizer/pom.xml Tue Dec 11 11:38:23 2012
@@ -53,6 +53,42 @@
<id>fthomas</id>
<name>Frederic Thomas</name>
</developer>
+ <developer>
+ <id>josebarragan</id>
+ <name>Jose Barragan</name>
+ </developer>
</developers>
-</project>
\ No newline at end of file
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2.2</version>
+ <configuration>
+ <archive>
+ <manifest>
+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ <addClasspath>true</addClasspath>
+ </manifest>
+ <manifestEntries>
+
<Implementation-Build>${project.version}</Implementation-Build>
+ </manifestEntries>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+
<finalName>flex-sdk-converter-${project.version}</finalName>
+ <appendAssemblyId>false</appendAssemblyId>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>