/
glazkova_mv
/
JavaPerformance
Обзор
Документация
Войти
/
glazkova_mv
/
JavaPerformance
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pom.xml
47 строк
1 KB
Роман Таранов
Initial commit. Fist task - size of object
02 ноя 2025, 11:16
02 ноя 2025, 11:16
7b82193
Код
Авторство
О чём код?
<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>sbp.school.performance</groupId> <artifactId>java-performance-homework</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>java-performance-homework</name> <url>http://maven.apache.org</url> <modules> <module>homework_1</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Tests --> <junit-jupiter.version>5.11.0</junit-jupiter.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> </project>