On Fri, Feb 3, 2017 at 3:36 PM, Josh Elser <[email protected]> wrote:
> Hi again, > > Just your friendly mentor pestering to get the announcement for 0.1.1 done > :) > > I've taken the liberty of updating the website: > https://github.com/apache/incubator-gossip/pull/30 > > I noticed that the artifacts were not promoted via Nexus to be mirror to > Maven Central. This needs to be done before we merge in these site changes. > I *think* I have the ability to do this if it comes to it. Normally the > release manager would do it (Edward). > > Anyone have a moment to take a glance before I push? > > - Josh > Josh, The page looks good. Thank you for taking the time to update it. You can feel free to merge and push. The documents in apache land which suggested doing this in our pom. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> <configuration> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>distribution</releaseProfiles> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> Outside of apache I simply run' mvn release:clean release:prepare release:perform' and the mvn command does this. I am unsure as to what I need to do in this case. Is there a guide/do you know?
