Skip to content

Commit 641a6ff

Browse files
committed
#25 fix versions
1 parent 041a2a6 commit 641a6ff

40 files changed

+57
-47
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2017, stateful.co
1+
Copyright (c) 2014-2023, stateful.co
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
<img src="http://img.stateful.co/pomegranate.svg" width="64px" height="64px"/>
1+
<img src="https://img.stateful.co/pomegranate.svg" width="64px" height="64px"/>
22

33
[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)
4-
[![Managed by Zerocracy](https://www.0crat.com/badge/CAZPZR9FS.svg)](https://www.0crat.com/p/CAZPZR9FS)
54
[![DevOps By Rultor.com](https://www.rultor.com/b/sttc/java-sdk)](https://www.rultor.com/p/sttc/java-sdk)
65
[![We recommend IntelliJ IDEA](https://www.elegantobjects.org/intellij-idea.svg)](https://www.jetbrains.com/idea/)
76

pom.xml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
* Copyright (c) 2014-2017, stateful.co
3+
* Copyright (c) 2014-2023, stateful.co
44
* All rights reserved.
55
*
66
* Redistribution and use in source and binary forms, with or without
@@ -35,7 +35,7 @@
3535
<parent>
3636
<groupId>com.jcabi</groupId>
3737
<artifactId>parent</artifactId>
38-
<version>0.42</version>
38+
<version>0.66.0</version>
3939
</parent>
4040
<groupId>co.stateful</groupId>
4141
<artifactId>java-sdk</artifactId>
@@ -60,9 +60,9 @@
6060
<developer>
6161
<id>1</id>
6262
<name>Yegor Bugayenko</name>
63-
<email>yegor@teamed.com</email>
64-
<organization>teamed.io</organization>
65-
<organizationUrl>http://www.teamed.io</organizationUrl>
63+
<email>yegor256@gmail.com</email>
64+
<organization>Zerocracy</organization>
65+
<organizationUrl>https://www.zerocracy.com</organizationUrl>
6666
<roles>
6767
<role>Architect</role>
6868
<role>Developer</role>
@@ -76,7 +76,7 @@
7676
</issueManagement>
7777
<ciManagement>
7878
<system>rultor</system>
79-
<url>http://www.rultor.com/s/stateful</url>
79+
<url>https://www.rultor.com/s/stateful</url>
8080
</ciManagement>
8181
<scm>
8282
<connection>scm:git:github.com:sttc/java-sdk.git</connection>
@@ -86,21 +86,24 @@
8686
<distributionManagement>
8787
<site>
8888
<id>gh-pages</id>
89-
<url>http://java-sdk.stateful.co/</url>
89+
<url>https://java-sdk.stateful.co/</url>
9090
</site>
9191
</distributionManagement>
9292
<dependencies>
9393
<dependency>
9494
<groupId>org.projectlombok</groupId>
9595
<artifactId>lombok</artifactId>
96+
<version>1.16.6</version>
9697
</dependency>
9798
<dependency>
9899
<groupId>com.jcabi</groupId>
99100
<artifactId>jcabi-aspects</artifactId>
101+
<version>0.22.3</version>
100102
</dependency>
101103
<dependency>
102104
<groupId>com.jcabi</groupId>
103105
<artifactId>jcabi-log</artifactId>
106+
<version>0.17.1</version>
104107
</dependency>
105108
<dependency>
106109
<groupId>javax.ws.rs</groupId>
@@ -116,23 +119,28 @@
116119
<dependency>
117120
<groupId>com.jcabi</groupId>
118121
<artifactId>jcabi-xml</artifactId>
122+
<version>0.17.2</version>
119123
</dependency>
120124
<dependency>
121125
<groupId>com.jcabi</groupId>
122126
<artifactId>jcabi-urn</artifactId>
127+
<version>0.9</version>
123128
</dependency>
124129
<dependency>
125130
<groupId>org.apache.commons</groupId>
126131
<artifactId>commons-lang3</artifactId>
132+
<version>3.4</version>
127133
</dependency>
128134
<dependency>
129135
<groupId>com.jcabi</groupId>
130136
<artifactId>jcabi-matchers</artifactId>
137+
<version>1.3</version>
131138
<scope>runtime</scope>
132139
</dependency>
133140
<dependency>
134141
<groupId>org.glassfish</groupId>
135142
<artifactId>javax.json</artifactId>
143+
<version>1.0.4</version>
136144
<scope>runtime</scope>
137145
</dependency>
138146
<dependency>
@@ -144,11 +152,13 @@
144152
<dependency>
145153
<groupId>org.hamcrest</groupId>
146154
<artifactId>hamcrest-core</artifactId>
155+
<version>1.3</version>
147156
<scope>compile</scope>
148157
</dependency>
149158
<dependency>
150159
<groupId>javax.servlet</groupId>
151160
<artifactId>javax.servlet-api</artifactId>
161+
<version>4.0.0-b01</version>
152162
</dependency>
153163
<dependency>
154164
<groupId>com.sun.grizzly</groupId>
@@ -159,6 +169,7 @@
159169
<dependency>
160170
<groupId>javax.validation</groupId>
161171
<artifactId>validation-api</artifactId>
172+
<version>1.1.0.Final</version>
162173
<scope>test</scope>
163174
</dependency>
164175
</dependencies>

src/main/java/co/stateful/Atomic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/Counter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/Counters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/Lock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/Locks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/RtCounter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/main/java/co/stateful/RtCounters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2014-2017, stateful.co
2+
* Copyright (c) 2014-2023, stateful.co
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)