|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>com.parseable</groupId> |
|
11 | 11 |
|
12 | 12 | <name>temporal-parseable</name> |
13 | 13 | <description>Temporal plugin that exports OpenTelemetry traces and logs directly to Parseable</description> |
14 | | - <url>https://github.com/parseablehq/temporal-plugin-java</url> |
| 14 | + <url>https://github.com/parseablehq/parseable-temporal-java</url> |
15 | 15 |
|
16 | 16 | <licenses> |
17 | 17 | <license> |
|
23 | 23 | <developers> |
24 | 24 | <developer> |
25 | 25 | <name>Parseable</name> |
26 | | - <email>engineering@parseable.com</email> |
| 26 | + <email>hi@parseable.com</email> |
27 | 27 | <organization>Parseable</organization> |
28 | 28 | <organizationUrl>https://parseable.com</organizationUrl> |
29 | 29 | </developer> |
30 | 30 | </developers> |
31 | 31 |
|
32 | 32 | <scm> |
33 | | - <connection>scm:git:git://github.com/parseablehq/temporal-plugin-java.git</connection> |
34 | | - <developerConnection>scm:git:ssh://github.com/parseablehq/temporal-plugin-java.git</developerConnection> |
35 | | - <url>https://github.com/parseablehq/temporal-plugin-java/tree/main</url> |
| 33 | + <connection>scm:git:git://github.com/parseablehq/parseable-temporal-java.git</connection> |
| 34 | + <developerConnection>scm:git:ssh://github.com/parseablehq/parseable-temporal-java.git</developerConnection> |
| 35 | + <url>https://github.com/parseablehq/parseable-temporal-java/tree/main</url> |
36 | 36 | </scm> |
37 | 37 |
|
38 | 38 | <properties> |
|
172 | 172 | <executions> |
173 | 173 | <execution> |
174 | 174 | <id>attach-sources</id> |
175 | | - <goals><goal>jar-no-fork</goal></goals> |
| 175 | + <goals> |
| 176 | + <goal>jar-no-fork</goal> |
| 177 | + </goals> |
176 | 178 | </execution> |
177 | 179 | </executions> |
178 | 180 | </plugin> |
|
183 | 185 | <executions> |
184 | 186 | <execution> |
185 | 187 | <id>attach-javadocs</id> |
186 | | - <goals><goal>jar</goal></goals> |
| 188 | + <goals> |
| 189 | + <goal>jar</goal> |
| 190 | + </goals> |
187 | 191 | </execution> |
188 | 192 | </executions> |
189 | 193 | </plugin> |
|
197 | 201 | <execution> |
198 | 202 | <id>sign-artifacts</id> |
199 | 203 | <phase>verify</phase> |
200 | | - <goals><goal>sign</goal></goals> |
| 204 | + <goals> |
| 205 | + <goal>sign</goal> |
| 206 | + </goals> |
201 | 207 | </execution> |
202 | 208 | </executions> |
203 | 209 | </plugin> |
|
206 | 212 | <plugin> |
207 | 213 | <groupId>org.sonatype.central</groupId> |
208 | 214 | <artifactId>central-publishing-maven-plugin</artifactId> |
209 | | - <version>0.7.0</version> |
| 215 | + <version>0.11.0</version> |
210 | 216 | <extensions>true</extensions> |
211 | 217 | <configuration> |
212 | 218 | <publishingServerId>central</publishingServerId> |
213 | 219 | <autoPublish>true</autoPublish> |
| 220 | + <waitUntil>published</waitUntil> |
214 | 221 | </configuration> |
215 | 222 | </plugin> |
216 | 223 | <plugin> |
|
227 | 234 | <execution> |
228 | 235 | <id>validate</id> |
229 | 236 | <phase>validate</phase> |
230 | | - <goals><goal>check</goal></goals> |
| 237 | + <goals> |
| 238 | + <goal>check</goal> |
| 239 | + </goals> |
231 | 240 | </execution> |
232 | 241 | </executions> |
233 | 242 | </plugin> |
|
0 commit comments