-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
64 lines (55 loc) · 2.5 KB
/
Copy pathpom.xml
File metadata and controls
64 lines (55 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.open-elements</groupId>
<artifactId>java-parent</artifactId>
<version>1.2.1</version>
</parent>
<artifactId>spring-services</artifactId>
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Services (reactor)</name>
<description>Spring Boot service utilities by Open Elements — Maven reactor parent</description>
<url>https://github.com/OpenElementsLabs/spring-services</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Hendrik Ebbers</name>
<email>hendrik.ebbers@open-elements.com</email>
<organization>Open Elements</organization>
<organizationUrl>https://open-elements.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/OpenElementsLabs/spring-services.git</connection>
<developerConnection>scm:git:https://github.com/OpenElementsLabs/spring-services.git</developerConnection>
<url>https://github.com/OpenElementsLabs/spring-services</url>
</scm>
<modules>
<module>spring-services-core</module>
<module>spring-services-slack</module>
<module>spring-services-search</module>
<module>spring-services-dbbackup</module>
<module>spring-services-email</module>
<module>spring-services-mcp</module>
<module>spring-services-scim</module>
<module>spring-services-tenant</module>
<module>spring-services-all</module>
<module>spring-services-bom</module>
</modules>
<!-- Shared third-party versions for all modules (module-internal concern; not pushed to the org parent). -->
<properties>
<slack-api-client.version>1.45.3</slack-api-client.version>
<swagger-annotations-jakarta.version>2.2.29</swagger-annotations-jakarta.version>
<jspecify.version>1.0.0</jspecify.version>
<testcontainers.version>2.0.5</testcontainers.version>
<wiremock.version>3.10.0</wiremock.version>
<mcp-sdk.version>0.18.3</mcp-sdk.version>
</properties>
</project>