Developers' Best Practices » History » Version 17
Alessia Bardi, 20/05/2016 11:57 AM
Command to revert to previous version
1 | 1 | Alessia Bardi | h1. Developers' Best Practices |
---|---|---|---|
2 | |||
3 | 3 | Claudio Atzori | It is time for D-Net development teams to find a strategy to improve our developement work! |
4 | 1 | Alessia Bardi | |
5 | The introduction of Jenkins and Nexus helped a lot in terms of code management, but now it is time to establish a set of guidelines to better co-ordinate our teams. |
||
6 | The following best practices are inspired by CNR developers' common sense, so we do not assume they are written in stones and applies as they are also in your cases. |
||
7 | |||
8 | So, you are strongly invited to comment/update this wiki page, so that we can reach a consensus. |
||
9 | 3 | Claudio Atzori | |
10 | h2. Coding |
||
11 | |||
12 | Most of the D-Net modules have been migrated to from the old build system ant to maven. This implies some changes to the module directories and files, here's the migration guide: |
||
13 | http://ci.research-infrastructures.eu/public/docbook/MavenMigration.html |
||
14 | |||
15 | Maven compliant D-Net module structure: |
||
16 | |||
17 | <pre> |
||
18 | . |
||
19 | ├── pom.xml |
||
20 | ├── src |
||
21 | │ ├── main |
||
22 | │ │ ├── java |
||
23 | │ │ │ └── eu |
||
24 | │ │ │ └── dnetlib |
||
25 | │ │ └── resources |
||
26 | │ │ └── eu |
||
27 | │ │ └── dnetlib |
||
28 | │ └── test |
||
29 | │ ├── java |
||
30 | │ │ └── eu |
||
31 | │ │ └── dnetlib |
||
32 | │ └── resources |
||
33 | │ └── eu |
||
34 | │ └── dnetlib |
||
35 | └── target |
||
36 | └── classes |
||
37 | </pre> |
||
38 | |||
39 | Hint: consider to define the svn:ignore property, set on the module root |
||
40 | |||
41 | <pre> |
||
42 | cd <MODULE_NAME> |
||
43 | svn pe svn:ignore . |
||
44 | |||
45 | .classpath |
||
46 | .project |
||
47 | .settings |
||
48 | target |
||
49 | </pre> |
||
50 | 1 | Alessia Bardi | |
51 | h2. Branching |
||
52 | |||
53 | It is always recommended to create a new branch when performing heavy changes to a module, rather than directly into trunk. |
||
54 | 16 | Alessia Bardi | Since branching and merging is usually a lot of pain, we can use this section to keep track useful commands: |
55 | 1 | Alessia Bardi | |
56 | 16 | Alessia Bardi | * To merge the branch into trunk, you can follow this step by step tutorial: http://www.sepcot.com/blog/2007/04/SVN-Merge-Branch-Trunk |
57 | * If you want to merge changes committed in one or more specific revisions of your branch into trunk, you can use the command: |
||
58 | @cd trunk@ |
||
59 | @svn merge -c revNumber -c anotherRevNumber https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/yourBranch@ |
||
60 | 14 | Alessia Bardi | |
61 | 17 | Alessia Bardi | h2. Revert to previous version |
62 | |||
63 | Because sometimes devs commit things that should not have been committed.... |
||
64 | @svn merge -r HEAD:<goodRevision> <pathToFileTorevert>@ |
||
65 | where @<goodRevision>@ is the revision number prior to the wrong commit of @<pathToFileTorevert>@ |
||
66 | |||
67 | 2 | Claudio Atzori | h2. Use CI: trust Jenkins! |
68 | 1 | Alessia Bardi | |
69 | The developer should clean the @.m2/repository/eu@ local repository from time to time to be sure that there are no modules installed locally. |
||
70 | |||
71 | Modules should be downloaded from Nexus in order to properly resolve dependencies. |
||
72 | |||
73 | 5 | Alessia Bardi | h2. Maven dependencies |
74 | |||
75 | For information about version conflict resolution with Maven3: |
||
76 | * http://docs.codehaus.org/display/MAVEN/Versioning |
||
77 | * https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+Compatibility+Notes |
||
78 | |||
79 | Generally speaking, we suggest to use the keyword @LATEST@ to refer to the last available artifact (snapshot or release) for a module. |
||
80 | Keep in mind that Maven3 considers: |
||
81 | @1.0-alpha-1 < 1.0-beta-1 < 1.0-SNAPSHOT < 1.0 < 1.1-SNAPSHOT@ |
||
82 | |||
83 | 6 | Alessia Bardi | h3. How to change the version number of a snapshot? |
84 | 1 | Alessia Bardi | |
85 | Depending on the kind of changes you can decide to increase the artifact version according to the following guidelines: |
||
86 | * BIG CHANGES impact the MAJOR version number. Ex. @0.0.1 --> 1.0.0@ |
||
87 | ** Examples of big changes are: updates to service interfaces, shared libraries, new functionalities. |
||
88 | * MINOR CHANGES impact the MINOR version number. Ex. @1.2.5 --> 1.3.0@ |
||
89 | ** Examples of minor changes are: service internals, non-shared code and libraries, important bug fixes. |
||
90 | * BUG FIXES impact the BUILD version number. Ex. @1.4.2 --> 1.4.3@ |
||
91 | ** Examples are small bug fixes that do not affect other components |
||
92 | |||
93 | 6 | Alessia Bardi | h2. Release Best Practices |
94 | |||
95 | h3. When/Why releasing a module? |
||
96 | |||
97 | * Generally speaking a developer should release a module when the code is mature enough to be used by others. |
||
98 | * An early release should be available in case others are relying on a module that is currently under heavy development (i.e., frequent commits that imply frequent snapshot updates), in order to avoid blocking other development activities. |
||
99 | 7 | Alessia Bardi | * Before updating an interface (e.g., service interfaces) or library (e.g., common and utilities modules) a developer MUST ENSURE there is a release of the current version. |
100 | 6 | Alessia Bardi | |
101 | 1 | Alessia Bardi | h3. How to release? |
102 | |||
103 | 13 | Alessia Bardi | Note that the maven release plugin works fine with *Apache Maven 3.0.5* and that is the version that we suggest you to use. |
104 | To know which maven version you are using run: <pre>mvn -version</pre> |
||
105 | If you have a newer version (e.g. 3.2.3), then you'll get the error @Return code is: 400, ReasonPhrase: Bad Request@ when running @mvn release:perform@. |
||
106 | However +the jar should have been correctly deployed+: we strongly suggest you to check this is true by logging into our "Nexus":http://maven.research-infrastructures.eu/nexus. |
||
107 | |||
108 | 1 | Alessia Bardi | These are the steps for the release of a module, given that developer has a fresh checkout of the module to be released. |
109 | 13 | Alessia Bardi | |
110 | 11 | Alessia Bardi | # Add the following at the beginning of your @~/.m2/settings.xml@: |
111 | 8 | Alessia Bardi | <pre> |
112 | <servers> |
||
113 | <server> |
||
114 | <id>dnet4-releases</id> |
||
115 | <username>your LDAP username</username> |
||
116 | <password>your LDAP password</password> |
||
117 | </server> |
||
118 | </servers> |
||
119 | </pre> |
||
120 | 7 | Alessia Bardi | # Add the SCM info (change @{project.name}@ with the actual name of the project): |
121 | 6 | Alessia Bardi | <pre> |
122 | <scm> |
||
123 | 7 | Alessia Bardi | <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/{project.name}/trunk</developerConnection> |
124 | 6 | Alessia Bardi | </scm> |
125 | </pre> |
||
126 | # Set the parent to a released parent. Example: |
||
127 | <pre> |
||
128 | <parent> |
||
129 | <groupId>eu.dnetlib</groupId> |
||
130 | <artifactId>dnet-parent</artifactId> |
||
131 | <version>1.0.0</version> |
||
132 | </parent> |
||
133 | </pre> |
||
134 | # Ensure there are no snapshots included as dependencies. Snapshot dependencies won't be resolved anymore by maven because released parents have visibility only on the released repository (@dnet4-releases@). For example, if your module currently depends on |
||
135 | <pre> |
||
136 | <dependency> |
||
137 | <groupId>eu.dnetlib</groupId> |
||
138 | <artifactId>cnr-misc-utils</artifactId> |
||
139 | <version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> |
||
140 | </dependency> |
||
141 | </pre> |
||
142 | You should change the dependency as follows: |
||
143 | <pre> |
||
144 | <dependency> |
||
145 | <groupId>eu.dnetlib</groupId> |
||
146 | <artifactId>cnr-misc-utils</artifactId> |
||
147 | <version>[1.0.0,2.0.0)</version> |
||
148 | </dependency> |
||
149 | </pre> |
||
150 | Note that this implies that the dependency module (e.g. @cnr-misc-utils@) must have been released. |
||
151 | 15 | Alessia Bardi | # Commit the changes you made in the pom.xml |
152 | 6 | Alessia Bardi | # Run @mvn release:prepare@ and answer the questions. Default answers are usually fine. This will: |
153 | #* copy your trunk into another svn folder (@tags@) |
||
154 | #* update the versions in trunk and tags |
||
155 | # Run @mvn release:perform@. This will deploy the artifact on Nexus in the release repository @dnet4-releases@. |
||
156 | 8 | Alessia Bardi | |
157 | 12 | Alessia Bardi | If you experience any issue, open a ticket to CNR. |