-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
177 lines (171 loc) · 6.53 KB
/
pom.xml
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>ua.com.pragmasoft</groupId>
<artifactId>k1te-chat-parent</artifactId>
<version>2023.10.3</version>
<packaging>pom</packaging>
<name>k1te-chat-parent</name>
<url>https://www.k1te.chat/</url>
<description>
K1te chat is an embeddable support chat system for static and dynamic websites,
which uses Telegram as its backend. This repository contains back end side.
Front end is in the separate repository here: https://github.com/pragmasoft-ua/kite-chat-frontend
</description>
<developers>
<developer>
<name>Dmytro Zemnytskyi</name>
<email>[email protected]</email>
<organization>Pragmasoft Ukraine</organization>
<roles>
<role>Architect</role>
</roles>
</developer>
<developer>
<name>Alex Sitiy</name>
<email>[email protected]</email>
<organization>Pragmasoft Ukraine</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<inceptionYear>2023</inceptionYear>
<scm>
<url>https://github.com/pragmasoft-ua/kite-chat</url>
<connection>https://github.com/pragmasoft-ua/kite-chat.git</connection>
<developerConnection>[email protected]:pragmasoft-ua/kite-chat.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/pragmasoft-ua/kite-chat/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub</system>
<url>https://github.com/pragmasoft-ua/kite-chat/actions</url>
</ciManagement>
<organization>
<name>Pragmasoft Ukraine</name>
<url>https://jobs.dou.ua/companies/pragmasoft/</url>
</organization>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 3</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler.release>17</maven.compiler.release>
<quarkus-plugin.version>3.3.0</quarkus-plugin.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.4.2</quarkus.platform.version>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<spotless.version>2.40.0</spotless.version>
<skipITs>true</skipITs>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>${quarkus.platform.artifact-id}</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.20.136</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-amazon-services-bom</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.zalando</groupId>
<artifactId>jackson-datatype-problem</artifactId>
<version>0.27.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
<ratchetFrom>origin/main</ratchetFrom>
<formats>
<!-- you can define as many formats as you want, each is independent -->
<format>
<!-- define the files to apply to -->
<includes>
<include>*.md</include>
<include>.gitignore</include>
<include>*.xml</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace />
<endWithNewline />
</format>
</formats>
<!-- define a language-specific format -->
<java>
<!-- no need to specify files, inferred automatically, but you can if you want -->
<!-- apply a specific flavor of google-java-format and reflow long strings -->
<googleJavaFormat>
<reflowLongStrings>true</reflowLongStrings>
<formatJavadoc>true</formatJavadoc>
</googleJavaFormat>
<!-- <eclipse>
<file>
https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml</file>
</eclipse> -->
<!-- make sure every file has the following copyright header.
optionally, Spotless can set copyright years by digging
through git history (see "license" section below) -->
<licenseHeader>
<content>/* LGPL 3.0 ©️ Dmytro Zemnytskyi, [email protected], $YEAR */</content>
<!-- or <file>${project.basedir}/license-header</file> -->
</licenseHeader>
</java>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>k1te-backend</module>
<module>k1te-server</module>
<module>k1te-serverless</module>
</modules>
</project>