116 lines
3.8 KiB
XML
116 lines
3.8 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>
|
|
|
|
<groupId>ru.kirillius</groupId>
|
|
<artifactId>pf-sdn</artifactId>
|
|
<version>0.1.0.0</version>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>web-client</module>
|
|
<module>core</module>
|
|
<module>web-server</module>
|
|
<module>app</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>kirillius</id>
|
|
<name>kirillius</name>
|
|
<url>https://repo.kirillius.ru/maven</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</releases>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>5.13.0-M2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>4.0.0-M1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.javatuples</groupId>
|
|
<artifactId>javatuples</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.cronutils</groupId>
|
|
<artifactId>cron-utils</artifactId>
|
|
<version>9.2.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.snmp4j/snmp4j -->
|
|
<dependency>
|
|
<groupId>org.snmp4j</groupId>
|
|
<artifactId>snmp4j</artifactId>
|
|
<version>3.7.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.kirillius</groupId>
|
|
<artifactId>icmp4j</artifactId>
|
|
<version>1.0.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.kirillius.util</groupId>
|
|
<artifactId>dynamic-types</artifactId>
|
|
<version>2.0.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.kirillius</groupId>
|
|
<artifactId>json-rpc-servlet</artifactId>
|
|
<version>2.1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.kirillius.utils</groupId>
|
|
<artifactId>common-logging</artifactId>
|
|
<version>1.3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.kirillius</groupId>
|
|
<artifactId>hibernate-commons</artifactId>
|
|
<version>2.2.0.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>12.0.12</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.40</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |