[vlma-devel] commit: Remove exec goal. (Adrien Grand )
git version control
git at videolan.org
Sun Apr 13 02:48:58 CEST 2008
vlma | branch: master | Adrien Grand <jpountz at videolan.org> | Sun Apr 13 01:41:53 2008 +0200| [1bf7f5e0afef5a0927d8008f159ca35555ca7252]
Remove exec goal.
A all-in-one jar is generated at package time so there is no more need to use
this goal. Run java -jar vlmad.jar instead.
> http://git.videolan.org/gitweb.cgi/vlma.git/?a=commit;h=1bf7f5e0afef5a0927d8008f159ca35555ca7252
---
daemon/pom.xml | 19 ++-----------------
1 files changed, 2 insertions(+), 17 deletions(-)
diff --git a/daemon/pom.xml b/daemon/pom.xml
index 46eb27e..43e6316 100644
--- a/daemon/pom.xml
+++ b/daemon/pom.xml
@@ -19,7 +19,7 @@
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
- <finalName>vlmad-with-deps</finalName>
+ <finalName>vlmad</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
@@ -44,7 +44,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
- <jarName>vlmad</jarName>
+ <jarName>vlmad-no-deps</jarName>
<archive>
<manifest>
<mainClass>org.videolan.vlma.daemon.VLMad</mainClass>
@@ -52,21 +52,6 @@
</archive>
</configuration>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>java</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <mainClass>org.videolan.vlma.daemon.VLMad</mainClass>
- </configuration>
- </plugin>
</plugins>
</build>
More information about the vlma-devel
mailing list