Skip to content

Commit 3f73825

Browse files
authored
Merge pull request #30 from JavaSaBr/develop
Merge develop to master
2 parents 39c38fb + 41949df commit 3f73825

File tree

1 file changed

+26
-68
lines changed

1 file changed

+26
-68
lines changed

README.md

Lines changed: 26 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -4,102 +4,60 @@ Please see the file called LICENSE.
44
[ ![Download](https://api.bintray.com/packages/javasabr/maven/com.spaceshift.rlib.common/images/download.svg) ](https://bintray.com/javasabr/maven/com.spaceshift.rlib.common/_latestVersion)
55

66

7-
## How to use for java 11+
7+
## How to use for java 21+
88

99
#### Gradle
1010

1111
```groovy
1212
repositories {
1313
maven {
14-
url "https://dl.bintray.com/javasabr/maven"
14+
url "https://gitlab.com/api/v4/projects/37512056/packages/maven"
1515
}
1616
}
1717
1818
dependencies {
19-
compile 'com.spaceshift:rlib.common:9.9.0'
20-
compile 'com.spaceshift:rlib.fx:9.9.0'
21-
compile 'com.spaceshift:rlib.network:9.9.0'
22-
compile 'com.spaceshift:rlib.mail:9.9.0'
23-
compile 'com.spaceshift:rlib.testcontainers:9.9.0'
19+
implementation 'javasabr:rlib-common:9.10.0'
20+
implementation 'javasabr:rlib-fx:9.10.0'
21+
implementation 'javasabr:rlib-network:9.10.0'
22+
implementation 'javasabr:rlib-mail:9.10.0'
23+
implementation 'javasabr:rlib-testcontainers:9.10.0'
2424
}
2525
```
2626

2727
#### Maven
2828

2929
```xml
3030
<repositories>
31-
<repository>
32-
<snapshots>
33-
<enabled>false</enabled>
34-
</snapshots>
35-
<id>bintray-javasabr-maven</id>
36-
<name>bintray</name>
37-
<url>https://dl.bintray.com/javasabr/maven</url>
38-
</repository>
31+
<repository>
32+
<id>gitlab-maven</id>
33+
<url>https://gitlab.com/api/v4/projects/37512056/packages/maven</url>
34+
</repository>
3935
</repositories>
4036

4137
<dependency>
42-
<groupId>com.spaceshift</groupId>
43-
<artifactId>rlib.common</artifactId>
44-
<version>9.9.0</version>
38+
<groupId>javasabr</groupId>
39+
<artifactId>rlib-common</artifactId>
40+
<version>9.10.0</version>
4541
</dependency>
4642
<dependency>
47-
<groupId>com.spaceshift</groupId>
48-
<artifactId>rlib.fx</artifactId>
49-
<version>9.9.0</version>
43+
<groupId>javasabr</groupId>
44+
<artifactId>rlib-fx</artifactId>
45+
<version>9.10.0</version>
5046
</dependency>
5147
<dependency>
52-
<groupId>com.spaceshift</groupId>
53-
<artifactId>rlib.network</artifactId>
54-
<version>9.9.0</version>
48+
<groupId>javasabr</groupId>
49+
<artifactId>rlib-network</artifactId>
50+
<version>9.10.0</version>
5551
</dependency>
5652
<dependency>
57-
<groupId>com.spaceshift</groupId>
58-
<artifactId>rlib.mail</artifactId>
59-
<version>9.9.0</version>
53+
<groupId>javasabr</groupId>
54+
<artifactId>rlib-mail</artifactId>
55+
<version>9.10.0</version>
6056
</dependency>
6157
<dependency>
62-
<groupId>com.spaceshift</groupId>
63-
<artifactId>rlib.testcontainers</artifactId>
64-
<version>9.9.0</version>
65-
</dependency>
66-
67-
```
68-
69-
## How to use for java 8+
70-
71-
#### Gradle
72-
73-
```groovy
74-
repositories {
75-
maven {
76-
url "https://dl.bintray.com/javasabr/maven"
77-
}
78-
}
79-
80-
dependencies {
81-
compile 'com.spaceshift:rlib.common:7.3.3'
82-
}
83-
```
84-
85-
#### Maven
86-
87-
```xml
88-
<repositories>
89-
<repository>
90-
<snapshots>;
91-
<enabled>false</enabled>
92-
</snapshots>
93-
<id>bintray-javasabr-maven</id>
94-
<name>bintray</name>
95-
<url>https://dl.bintray.com/javasabr/maven</url>
96-
</repository>
97-
</repositories>
98-
99-
<dependency>
100-
<groupId>com.spaceshift</groupId>
101-
<artifactId>rlib.common</artifactId>
102-
<version>7.3.3</version>
58+
<groupId>javasabr</groupId>
59+
<artifactId>rlib-testcontainers</artifactId>
60+
<version>9.10.0</version>
10361
</dependency>
10462
```
10563

0 commit comments

Comments
 (0)