Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build JAR File
name: Build JAR File

on:
push:
Expand All @@ -18,6 +18,9 @@ jobs:
with:
website: jdk.java.net

- name: Download from Maven
run: mvn package

- name: Build with Maven
run: mvn package

Expand All @@ -29,8 +32,19 @@ jobs:
run:
tree -h

- run: |
git config user.name "aaa"
git config user.email "aaa\@aaa.com"
ls -la "target/TaskManager-0.0.1-SNAPSHOT.jar"
cp "target/TaskManager-0.0.1-SNAPSHOT.jar" tm.jar
git add tm.jar
git commit -m "Upload zip"
git push


- name: Upload JAR artifact
uses: actions/upload-artifact@v2
with:
name: taskmanagerapp
path: build/libs/my-app.jar
path: target

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# The Vanina Task Manager

## Features

- **Create:** Create a new task by providing a title and a description.
Expand All @@ -6,6 +8,10 @@
- **Update:** Update details of an existing task.
- **Delete:** Delete an existing task by its ID.

## Installation

Download the jar file ```tm.jar``` then run: ```java -jar tm.jar``` at the command line. Use the application at http://localhost:8080

## How it Works

The application follows an MVC (Model-View-Controller) architecture model. Tasks are managed through controllers that interact with the task service and task repository to perform CRUD (Create, Read, Update, Delete) operations.
Expand Down
Binary file modified images/add_task_form_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/main_screen_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/task_list_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/update_task_form_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tm.jar
Binary file not shown.