Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update README.md for new version #34

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ Maven:
<dependency>
<groupId>name.velikodniy.vitaliy</groupId>
<artifactId>fixedlength</artifactId>
<version>0.9</version>
<version>0.10</version>
<type>pom</type>
</dependency>
```

Gradle:
```groovy
implementation 'name.velikodniy.vitaliy:fixedlength:0.8'
implementation 'name.velikodniy.vitaliy:fixedlength:0.10'
```

Ivy:
```xml
<dependency org='name.velikodniy.vitaliy' name='fixedlength' rev='0.9'>
<dependency org='name.velikodniy.vitaliy' name='fixedlength' rev='0.10'>
<artifact name='fixedlength' ext='pom' ></artifact>
</dependency>
```
Expand All @@ -87,7 +87,7 @@ Joe1 Smith
Joe3 Smith
```

you need just write down this class:
you need just write down this class (annotated fields also could be pulled from annotated classes):

```java
public class Employee {
Expand Down
Loading