Compare commits
No commits in common. "f380e12f67b11e172bcd5e3d12b3e4cf5bd72f37" and "8700123455c8e6579452c2a8aefc2a8822ae6f90" have entirely different histories.
f380e12f67
...
8700123455
@ -7,13 +7,6 @@ TodoApp - это консольное приложение для управле
|
|||||||
- Java 24 или выше
|
- Java 24 или выше
|
||||||
- Maven 3.8.x или выше
|
- Maven 3.8.x или выше
|
||||||
|
|
||||||
## Установка и запуск
|
|
||||||
```bash
|
|
||||||
cd ./todo
|
|
||||||
mvn clean package
|
|
||||||
java -jar ./target/todo.jar
|
|
||||||
```
|
|
||||||
|
|
||||||
### Доступные команды
|
### Доступные команды
|
||||||
- `create <название_задачи>` - Создать новую задачу
|
- `create <название_задачи>` - Создать новую задачу
|
||||||
- `list` - Показать список всех задач
|
- `list` - Показать список всех задач
|
||||||
|
|||||||
30
todo/pom.xml
30
todo/pom.xml
@ -10,36 +10,6 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.release>24</maven.compiler.release>
|
<maven.compiler.release>24</maven.compiler.release>
|
||||||
<maven.compiler.target>24</maven.compiler.target>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
|
||||||
<finalName>todo</finalName>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.4.2</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifest>
|
|
||||||
<mainClass>ru.kamask.pet.todo.TodoApp</mainClass>
|
|
||||||
</manifest>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<version>3.14.0</version>
|
|
||||||
<configuration>
|
|
||||||
<source>24</source>
|
|
||||||
<target>24</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
Loading…
x
Reference in New Issue
Block a user