Assembly « plugin « Maven/Ant Q&A

Home
Maven/Ant Q&A
1.Ant
2.artifact
3.dependency
4.deploy
5.Development
6.eclipse
7.glassfish
8.hudson
9.integration
10.jetty
11.junit
12.m2eclipse
13.module
14.netbeans
15.package
16.plugin
17.POM
18.repository
19.svn
Maven/Ant Q&A » plugin » Assembly 

1. Maven, Proguard and assembly issues    stackoverflow.com

I'm trying to get Maven working with ProGuard. What I want to achieve is the following:

  • Run ProGuard over my source files and produce obfuscated classes
  • Create a manifest file that references the ...

2. Where do I put custom assembly descriptors for the Maven Assembly plugin?    stackoverflow.com

Either I'm missing something obvious, or both the Maven book and the Maven Assembly Plugin's homepage, while describing how to write custom assembly descriptors, don't say anything ...

3. The maven assembly plugin is not using the finalName for installing with attach=true?    stackoverflow.com

I have configured following assembly:

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
   ...

4. Maven2 assembly plugin - change root name for tar.gz    stackoverflow.com

I am using the assembly plugin to tar.gz up a package. I am trying to change the root output directory from ${project.name}-{$project.version} to just ${project.name}, but cant seem to find ...

5. Maven assembly plugin: building a distributable JSE application    stackoverflow.com

I'm developing a simple, stand-alone, command line Java application. The project is managed by Maven. I'd like to build a deliverable, which can be copied and run on the client's machine. I'm ...

6. how to use Maven Assembly plugin in Multimodule Projects    stackoverflow.com

I have a multimodule maven project like :

Main Module
   Module A
   Module B
   Module C
when i build the Main module it will produce the following:
Main ...

7. Trouble getting started with maven assembly plugin    stackoverflow.com

I'm sorry to sound ignorant here, but I'm new to Maven, and have been banging my head against something that I'm sure is quite simple. The docs say:

...

8. Maven "Failed to create assembly" Problem    stackoverflow.com

I use a very simple assembly desriptor:

<fileSets>
    <fileSet>
        <directory>domain/etc/scripts/</directory>
        <outputDirectory>tools</outputDirectory>
     ...

9. Maven Assembly Plugin is executed on child projects    stackoverflow.com

I have the following problem. I have a multimodule project. I want to run maven-assembly plugin on the toplevel pom that is also a parent pom for its modules. I want ...

10. Maven assembly plugin chmod output folder    stackoverflow.com

I am trying to use the maven-assembly plugin like so to build a zip of my project JAR and all libraries needed to run it:

       ...

11. Maven assembly plugin not producing jar-with-dependencies any more, why?    stackoverflow.com

This is in my pom.xml:

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
    <descriptorRefs>
          <descriptorRef>jar-with-dependencies</descriptorRef>
    </descriptorRefs>
    <archive>
     ...

12. maven assembly plugin - correct use of the exclude term    stackoverflow.com

short: I need to filter all java Files and every META-INF Folder from a set of jars and package the class files and resources into one single jar. I currently use the ...

13. Maven 3 assembly plugin is very slow    stackoverflow.com

After upgrading to maven 3 , my assembly plugin and assembly plugin only takes comparitively more time to copy stuff mostly. Has anyone faced this issue already, or is there something I ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.