Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

Commit fc83695

Browse files
authored
Merge pull request #71 from 1NEILY/main
добавил свою папку
2 parents b917e7d + 08b9fd9 commit fc83695

File tree

5 files changed

+43
-0
lines changed

5 files changed

+43
-0
lines changed

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
<module>students/24K0459</module>
4343
<module>students/23K0364</module>
4444
<module>students/23K0155</module>
45+
<module>students/23K0114</module>
46+
4547
</modules>
4648

4749
<dependencies>

students/23K0114/23K0114-p01/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<artifactId>23K0114</artifactId>
7+
<groupId>ru.mirea.practice</groupId>
8+
<version>2024.1</version>
9+
<relativePath>../pom.xml</relativePath>
10+
</parent>
11+
<artifactId>23K0114-p01</artifactId>
12+
<description>Массивы</description>
13+
</project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package ru.mirea.practice.s23k0114.lab1;
2+
3+
public final class Task1 {
4+
private Task1() {}
5+
6+
public static void main(String[] args) {
7+
System.out.println("asd");
8+
}
9+
}

students/23K0114/README.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Дмитрий Дандыль КВБО-01-23

students/23K0114/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<artifactId>algorithms-and-data-structures</artifactId>
7+
<groupId>ru.mirea.practice</groupId>
8+
<version>2024.1</version>
9+
<relativePath>../../pom.xml</relativePath>
10+
</parent>
11+
<artifactId>23K0114</artifactId>
12+
<packaging>pom</packaging>
13+
<description>Практическая работа Давид Гобеджишвили</description>
14+
15+
<modules>
16+
<module>23K0114-p01</module>
17+
</modules>
18+
</project>

0 commit comments

Comments
 (0)