Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Any way to exclude pom and other maven artifacts from generated artifacts?

Thanks!

Worked like a charm.

Eric

On 15/04/2013 1:26 PM, Hendrik Eeckhaut wrote:
This does the trick:
<build>
     <pluginManagement>
         <plugin>
           <groupId>org.eclipse.tycho</groupId>
           <artifactId>tycho-packaging-plugin</artifactId>
           <version>${tycho-version}</version>
           <configuration>
             <archive>
               <addMavenDescriptor>false</addMavenDescriptor>
             </archive>
           </configuration>
         </plugin>
       </plugins>
     </pluginManagement>
   </build>





Back to the top