forked from database-rider/database-rider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease_process.txt
More file actions
27 lines (17 loc) · 802 Bytes
/
release_process.txt
File metadata and controls
27 lines (17 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
1 - add bintray server to settings.xml
<servers>
<server>
<id>bintray</id>
<username>rmpestano</username>
<password>bintrayapikey</password>
</server>
</servers>
2 - create the new version at https://bintray.com/rmpestano/database-rider/database-rider
3 - change pom of all projects to same version created on bintray
4 - mvn clean install
5 - upload artifacts to bintray and sync with maven central via bintray web app
6 - return versions in pom to SNAPSHOT
7 - mvn release:prepare -Prelease -Darguments="-DskipTests" -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -Dmaven.jarsigner.skip=true -Dresume=false
8 - edit created tag with issues fixed in current milestone
9 - close the milestone
10 - TODO: try to automate this process (although it takes less then 5min to release)