-
Notifications
You must be signed in to change notification settings - Fork 101
/
dev.txt
55 lines (43 loc) · 1.93 KB
/
dev.txt
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
----------------------------------------------------------
New Frodo version (TODO: automate these tasks)
----------------------------------------------------------
1. Publish through gradle task:
- ./gradlew publishFrodo
2. Upload pom.xml manually (there is an issue with the publishing plugin) and publish on bintray:
- https://github.com/novoda/bintray-release
- https://github.com/novoda/bintray-release/issues/19
3. Generate and upload javadoc and sources manually on bintray for frodo-runtime:
- ./gradlew -p frodo-runtime/ androidJavadocsJar
- ./gradlew -p frodo-runtime/ androidSourcesJar
- https://bintray.com/android10/maven
3. Delete any local frodo repository and try the plugin with a new clean android project.
- cd ~/.m2/repository/com/fernandocejas
- rm -rf frodo/
4. Create a tag on github:
- git tag
- git tag -a v0.8.4 -m "Release version 0.8.4"
- git tag
- git show v0.8.4
- git push origin v0.8.4
5. Release Notes: and description in both Github and Bintray.
- Frodo wiki on github: https://github.com/android10/frodo/wiki
- Bintray description: https://bintray.com/android10/maven
6. Prepare for the next development version:
- FrodoPlugin class project.dependencies
- gradle.properties 'version' property
- add new version CHANGELOG.txt file
7. Install new version by running either of these tasks:
- ./install_frodo.sh
- ./gradlew installFrodoAndroidSample
8. Promote new version released
----------------------------------------------------------
----------------------------------------------------------
POSSIBLE ISSUE #1
----------------------------------------------------------
- Installing frodo through './install_frodo.sh' can trigger this exception:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':frodo-runtime:install'.
> A problem occurred starting process 'command 'mvn''
- Solution: Stop Gradle by executing: './gradlew --stop'
----------------------------------------------------------