Use build-helper-maven-plugin to attached your specific files to maven, so that they can be deploy with the rest of other built artifacts
However, if you want to upload your files to somewhere else rather maven repo, then use wagin-maven-plugin at deploy phase -D On Sat, Jan 17, 2009 at 6:56 AM, Michael Decker <[email protected]> wrote: > Hi, > > I want to modify my "release:perform" goal, so it will automatically upload my > assemblies to sourceforge, so I can easily provide them on the sourceforge > download page. > > Yet I can build the assemblies and upload the site on using "release:perform" > by using this: > --- SNIP --- > <plugin> > <artifactId>maven-release-plugin</artifactId> > <configuration> > <tagBase>https:....</tagBase> > <allowTimestampedSnapshots>true</allowTimestampedSnapshots> > <goals>assembly:assembly site-deploy</goals> > </configuration> > </plugin> > </plugins> > </build> > --- SNAP --- > > So I wonder, how I can perform uploading of four files. > > There is Maven Wagon without any documentation: > http://maven.apache.org/wagon/index.html > > And I found Maven Upload Plugin, that can upload a whole directory, but I want > only four files saved in target directory: > http://docs.atlassian.com/maven-upload-plugin/1.1/usage.html > > Perhaps someone can me help me on this. > > Thanks a lot. > > With regards > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
