-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
153 lines (143 loc) · 6.33 KB
/
pom.xml
File metadata and controls
153 lines (143 loc) · 6.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.5</version>
<relativePath/>
</parent>
<groupId>me.golemcore</groupId>
<artifactId>golemcore-bot-parent</artifactId>
<version>0.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>golemcore-bot-parent</name>
<description>Parent build for GolemCore Bot modules</description>
<url>https://github.com/alexk-dev/golemcore-bot</url>
<developers>
<developer>
<id>alexk-dev</id>
<name>Alex K</name>
<url>https://github.com/alexk-dev</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/alexk-dev/golemcore-bot.git</connection>
<developerConnection>scm:git:ssh://github.com:alexk-dev/golemcore-bot.git</developerConnection>
<url>https://github.com/alexk-dev/golemcore-bot/tree/main</url>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license with explicit patent grant</comments>
</license>
</licenses>
<modules>
<module>golemcore-bot-contracts</module>
<module>golemcore-bot-runtime-config</module>
<module>golemcore-bot-sessions</module>
<module>golemcore-bot-memory</module>
<module>golemcore-bot-tools</module>
<module>golemcore-bot-tracing</module>
<module>golemcore-bot-scheduling</module>
<module>golemcore-bot-runtime-core</module>
<module>golemcore-bot-client</module>
<module>golemcore-bot-self-evolving</module>
<module>golemcore-bot-hive</module>
<module>golemcore-bot-extensions</module>
<module>golemcore-bot-app</module>
</modules>
<properties>
<java.version>25</java.version>
<spring-boot.version>4.0.5</spring-boot.version>
<feign.version>13.12</feign.version>
<okhttp.version>5.3.2</okhttp.version>
<telegram.version>9.5.0</telegram.version>
<langchain4j.version>1.12.2</langchain4j.version>
<jjwt.version>0.13.0</jjwt.version>
<totp.version>1.7.1</totp.version>
<protobuf.version>4.34.1</protobuf.version>
<protobuf.maven.plugin.version>0.6.1</protobuf.maven.plugin.version>
<json.schema.validator.version>3.0.2</json.schema.validator.version>
<picocli.version>4.0.4</picocli.version>
<pty4j.version>0.13.12</pty4j.version>
<lombok.version>1.18.46</lombok.version>
<spotbugs.version>4.9.8.3</spotbugs.version>
<pmd.version>3.28.0</pmd.version>
<jacoco.version>0.8.14</jacoco.version>
<archunit.version>1.4.2</archunit.version>
<jib.version>3.5.1</jib.version>
<jib.target.image>ghcr.io/${env.GITHUB_REPOSITORY}</jib.target.image>
<jib.from.image>ghcr.io/alexk-dev/golemcore-bot-base:latest</jib.from.image>
<jib.platform.arch>amd64</jib.platform.arch>
<sonar.organization>alexk-dev</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.projectKey>alexk-dev_golemcore-bot</sonar.projectKey>
<sonar.coverage.jacoco.xmlReportPaths>${maven.multiModuleProjectDirectory}/golemcore-bot-app/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-bom</artifactId>
<version>${okhttp.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.5</version>
<configuration>
<forkCount>2</forkCount>
<reuseForks>true</reuseForks>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs.version}</version>
<configuration>
<effort>Max</effort>
<threshold>Medium</threshold>
<failOnError>true</failOnError>
<excludeFilterFile>${maven.multiModuleProjectDirectory}/misc/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${pmd.version}</version>
<configuration>
<failOnViolation>false</failOnViolation>
<printFailingErrors>true</printFailingErrors>
<includeTests>true</includeTests>
<rulesets>
<ruleset>${maven.multiModuleProjectDirectory}/misc/pmd-ruleset.xml</ruleset>
</rulesets>
</configuration>
</plugin>
</plugins>
</build>
</project>