60 lines
2.1 KiB
XML
60 lines
2.1 KiB
XML
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>ru.kirillius</groupId>
|
||
<artifactId>XCP</artifactId>
|
||
<version>1.0.0.0</version>
|
||
</parent>
|
||
|
||
<artifactId>rpc</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>21</maven.compiler.source>
|
||
<maven.compiler.target>21</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
|
||
<!-- Не используем т.к. есть уязвимости и не совместимо с текущей версией JSON-->
|
||
<!-- <!– https://mvnrepository.com/artifact/com.github.briandilley.jsonrpc4j/jsonrpc4j –>-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.github.briandilley.jsonrpc4j</groupId>-->
|
||
<!-- <artifactId>jsonrpc4j</artifactId>-->
|
||
<!-- <version>1.7</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
|
||
<dependency>
|
||
<groupId>org.eclipse.jetty</groupId>
|
||
<artifactId>jetty-server</artifactId>
|
||
<version>12.1.5</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty.ee10/jetty-ee10-servlet -->
|
||
<dependency>
|
||
<groupId>org.eclipse.jetty.ee10</groupId>
|
||
<artifactId>jetty-ee10-servlet</artifactId>
|
||
<version>12.1.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.eclipse.jetty.ee10</groupId>
|
||
<artifactId>jetty-ee10-webapp</artifactId>
|
||
<version>12.1.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ru.kirillius</groupId>
|
||
<artifactId>api</artifactId>
|
||
<version>1.0.0.0</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
|
||
</dependencies>
|
||
|
||
</project> |