Skip to content

Commit 256875c

Browse files
committed
[GAIA-3355] Add docu in official Readme
1 parent 426a8e7 commit 256875c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,31 @@ fun instantiateEntityA(){
175175
))
176176
}
177177
````
178+
179+
## Trim
180+
181+
The @Trim annotation can be used on methods that return a String value and is used to trim the content of the field
182+
183+
````
184+
interface EntityA {
185+
@Trim
186+
fun getStringVal():String?
187+
}
188+
189+
````
190+
178191
## Development
179192

180193
### Release
194+
181195
Releases are triggered locally. Just a tag will be pushed and CI pipelines take care of the rest.
182196

183197
#### Major
198+
184199
Run `./gradlew final -x sendReleaseEmail -Prelease.scope=major` locally.
185200

186201
#### Minor
202+
187203
Run `./gradlew final -x sendReleaseEmail -Prelease.scope=minor` locally.
188204

189205
#### Patch

0 commit comments

Comments
 (0)