/
Dixix404
/
Using_TLS
Обзор
Документация
Войти
/
Dixix404
/
Using_TLS
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ReceiveApp/pom.xml
35 строк
1 KB
D1x1x
Using TLS
25 дек 2025, 22:33
25 дек 2025, 22:33
43fe136
Код
Авторство
О чём код?
<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>ru.dixix404</groupId> <artifactId>SecureFileTransfer</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ReceiveApp</artifactId> <name>ReceiveApp</name> <dependencies> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.example.ReceiveApp</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>