CoolFace
Apppublic

sNp-tech/backend

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
pom.xml78 linesDownload Raw Back to root
1<?xml version="1.0" encoding="UTF-8"?>2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"3	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">4	<modelVersion>4.0.0</modelVersion>5	<parent>6		<groupId>org.springframework.boot</groupId>7		<artifactId>spring-boot-starter-parent</artifactId>8		<version>3.2.0</version>9		<relativePath/> <!-- lookup parent from repository -->10	</parent>11	<groupId>com.snp</groupId>12	<artifactId>backend</artifactId>13	<version>0.0.1-SNAPSHOT</version>14	<name>backend</name>15	<description>Real-time Collaboration Backend</description>16	<properties>17		<java.version>17</java.version>18	</properties>19	<dependencies>20		<dependency>21			<groupId>org.springframework.boot</groupId>22			<artifactId>spring-boot-starter-web</artifactId>23		</dependency>24		<dependency>25			<groupId>org.springframework.boot</groupId>26			<artifactId>spring-boot-starter-websocket</artifactId>27		</dependency>28		<dependency>29			<groupId>org.springframework.boot</groupId>30			<artifactId>spring-boot-starter-data-mongodb</artifactId>31		</dependency>32 33		<dependency>34			<groupId>org.springframework.boot</groupId>35			<artifactId>spring-boot-starter-security</artifactId>36		</dependency>37 38		<dependency>39			<groupId>org.projectlombok</groupId>40			<artifactId>lombok</artifactId>41			<optional>true</optional>42		</dependency>43		<dependency>44			<groupId>org.springframework.boot</groupId>45			<artifactId>spring-boot-starter-test</artifactId>46			<scope>test</scope>47		</dependency>48		<dependency>49			<groupId>org.springframework.boot</groupId>50			<artifactId>spring-boot-starter-validation</artifactId>51		</dependency>52		<dependency>53			<groupId>com.bucket4j</groupId>54			<artifactId>bucket4j-core</artifactId>55			<version>8.7.0</version>56		</dependency>57	</dependencies>58 59	<build>60		<finalName>backend</finalName>61		<plugins>62			<plugin>63				<groupId>org.springframework.boot</groupId>64				<artifactId>spring-boot-maven-plugin</artifactId>65				<configuration>66					<excludes>67						<exclude>68							<groupId>org.projectlombok</groupId>69							<artifactId>lombok</artifactId>70						</exclude>71					</excludes>72				</configuration>73			</plugin>74		</plugins>75	</build>76 77</project>78