Website is updated.
All that remains is to send a note out to [email protected] to
brag about, I mean announce, the release ;)
Make sure to send from your apache.org addr, include a brief explanation
about what Gossip is, and include the stock "incubation disclaimer".
P. Taylor Goetz wrote:
Edward,
The staging repository in nexus is ready, all you have to do is click on the
Release button for 1002, and Drop the earlier rcs.
-Taylor
On Feb 3, 2017, at 4:03 PM, Edward Capriolo<[email protected]> wrote:
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?