|
34 | 34 |
|
35 | 35 |
|
36 | 36 | <scm> |
37 | | - <connection>scm:git:git://git@github.com/vpro/esper-events.git</connection> |
38 | | - <developerConnection>scm:git:git@github.com:vpro/esper-events.git</developerConnection> |
39 | | - <url>https://github.com/vpro/esper-events</url> |
40 | | - <tag>REL-3.0</tag> |
| 37 | + <connection>scm:git:git://git@github.com/npo-poms/esper-events.git</connection> |
| 38 | + <developerConnection>scm:git:git@github.com:npo-poms/esper-events.git</developerConnection> |
| 39 | + <url>https://github.com/npo-poms/esper-events</url> |
41 | 40 | </scm> |
42 | 41 |
|
43 | 42 | <properties> |
44 | | - <slf4j.version>2.0.11</slf4j.version> |
| 43 | + <slf4j.version>2.0.17</slf4j.version> |
45 | 44 | <esper.version>9.0.0</esper.version> |
46 | 45 |
|
47 | | - <junit.version>5.10.1</junit.version> |
48 | | - <log4j2.version>2.23.1</log4j2.version> |
| 46 | + <junit.version>5.13.4</junit.version> |
| 47 | + <log4j2.version>2.25.2</log4j2.version> |
49 | 48 | </properties> |
50 | 49 |
|
51 | 50 | <dependencies> |
|
72 | 71 | <dependency> |
73 | 72 | <groupId>com.google.guava</groupId> |
74 | 73 | <artifactId>guava</artifactId> |
75 | | - <version>33.2.1-jre</version> |
| 74 | + <version>33.5.0-jre</version> |
76 | 75 | </dependency> |
77 | 76 | <dependency> |
78 | 77 | <groupId>org.projectlombok</groupId> |
79 | 78 | <artifactId>lombok</artifactId> |
80 | | - <version>1.18.32</version> |
| 79 | + <version>1.18.42</version> |
81 | 80 | </dependency> |
82 | 81 | <dependency> |
83 | 82 | <groupId>commons-beanutils</groupId> |
84 | 83 | <artifactId>commons-beanutils</artifactId> |
85 | | - <version>1.9.4</version> |
| 84 | + <version>1.11.0</version> |
86 | 85 | <exclusions> |
87 | 86 | <!-- as far as I know these dependencies are optional, at least for the one class we use org.apache.commons.beanutils.PropertyUtils --> |
88 | 87 | <exclusion> |
|
103 | 102 | <dependency> |
104 | 103 | <groupId>org.assertj</groupId> |
105 | 104 | <artifactId>assertj-core</artifactId> |
106 | | - <version>3.26.0</version> |
| 105 | + <version>3.27.6</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.checkerframework</groupId> |
| 109 | + <artifactId>checker-qual</artifactId> |
| 110 | + <version>3.51.0</version> |
| 111 | + <scope>provided</scope> |
107 | 112 | </dependency> |
108 | 113 | <dependency> |
109 | 114 | <groupId>org.junit.jupiter</groupId> |
|
138 | 143 | <plugins> |
139 | 144 | <plugin> |
140 | 145 | <artifactId>maven-compiler-plugin</artifactId> |
141 | | - <version>3.13.0</version> |
| 146 | + <version>3.14.1</version> |
142 | 147 | <configuration> |
143 | 148 | <source>17</source> |
144 | 149 | <target>17</target> |
|
148 | 153 | <plugin> |
149 | 154 | <groupId>org.apache.maven.plugins</groupId> |
150 | 155 | <artifactId>maven-release-plugin</artifactId> |
151 | | - <version>3.0.1</version> |
| 156 | + <version>3.1.1</version> |
152 | 157 | <configuration> |
153 | 158 | <branchName>REL-${project.version}</branchName> |
154 | 159 | <tagNameFormat>REL-@{project.version}</tagNameFormat> |
|
175 | 180 | </plugin> |
176 | 181 | <plugin> |
177 | 182 | <artifactId>maven-surefire-plugin</artifactId> |
178 | | - <version>3.2.5</version> |
| 183 | + <version>3.5.4</version> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.sonatype.central</groupId> |
| 187 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 188 | + <version>0.9.0</version> |
| 189 | + <extensions>true</extensions> |
| 190 | + <configuration> |
| 191 | + <publishingServerId>central</publishingServerId> |
| 192 | + <autoPublish>true</autoPublish> |
| 193 | + </configuration> |
| 194 | + </plugin> |
| 195 | + <plugin> |
| 196 | + <groupId>org.codehaus.mojo</groupId> |
| 197 | + <artifactId>versions-maven-plugin</artifactId> |
| 198 | + <version>2.19.1</version> |
| 199 | + <configuration> |
| 200 | + <rulesUri>file:///${maven.multiModuleProjectDirectory}/rules.xml</rulesUri> |
| 201 | + </configuration> |
179 | 202 | </plugin> |
180 | 203 | </plugins> |
181 | 204 | </build> |
|
185 | 208 | <id>deploy</id> |
186 | 209 | <build> |
187 | 210 | <plugins> |
188 | | - <plugin> |
189 | | - <groupId>org.sonatype.plugins</groupId> |
190 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
191 | | - <version>1.7.0</version> |
192 | | - <extensions>true</extensions> |
193 | | - <configuration> |
194 | | - <serverId>vpro-ossrh</serverId> |
195 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
196 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
197 | | - </configuration> |
198 | | - </plugin> |
199 | 211 | <plugin> |
200 | 212 | <artifactId>maven-source-plugin</artifactId> |
201 | 213 | <version>3.3.1</version> |
|
210 | 222 | </plugin> |
211 | 223 | <plugin> |
212 | 224 | <artifactId>maven-gpg-plugin</artifactId> |
213 | | - <version>3.2.4</version> |
| 225 | + <version>3.2.8</version> |
214 | 226 | <executions> |
215 | 227 | <execution> |
216 | 228 | <id>sign-artifacts</id> |
|
224 | 236 |
|
225 | 237 | <plugin> |
226 | 238 | <artifactId>maven-javadoc-plugin</artifactId> |
227 | | - <version>3.6.0</version> |
| 239 | + <version>3.12.0</version> |
228 | 240 | <executions> |
229 | 241 | <execution> |
230 | 242 | <id>attach-javadocs</id> |
|
238 | 250 | </build> |
239 | 251 | </profile> |
240 | 252 | </profiles> |
241 | | - |
242 | | - |
243 | | - <distributionManagement> |
244 | | - <snapshotRepository> |
245 | | - <id>vpro-ossrh</id> |
246 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
247 | | - </snapshotRepository> |
248 | | - <repository> |
249 | | - <id>vpro-ossrh-release</id> |
250 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
251 | | - </repository> |
252 | | - </distributionManagement> |
253 | 253 | </project> |
0 commit comments