Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8380d43
First commit. Add classes and .idea in .gitignore. The proyect is hom…
Esteban-Gamboa-01 Feb 20, 2025
7c4a665
first commit on branch
Feb 23, 2025
368ea63
Added class Teacher
Feb 23, 2025
0a9b38a
Fix folder structure
Feb 25, 2025
038544f
Create test
JohnyJay Feb 25, 2025
f3b6c2a
Delete test
JohnyJay Feb 25, 2025
f7e7634
Delete README.md
JohnyJay Feb 25, 2025
827a67c
Delete .gitignore
JohnyJay Feb 25, 2025
1220d7c
Delete .idea directory
JohnyJay Feb 25, 2025
e9d5771
Delete homework02/.idea directory
JohnyJay Feb 25, 2025
195885c
Command Function Complete v1.0
Feb 25, 2025
579de1e
Course class and SHOW COURSES, LOOKUP STUDENT, SHOW PROFIT commands, …
fernando-balseca Feb 25, 2025
630d6c4
Add menu and class Student
Esteban-Gamboa-01 Feb 25, 2025
d522023
Function ShowStudent. There is a bug.
Esteban-Gamboa-01 Feb 26, 2025
7aaa49c
Add all command
Esteban-Gamboa-01 Feb 26, 2025
9f72b18
Modified
Esteban-Gamboa-01 Feb 26, 2025
a167545
Merge Branch maindev03 and maindev02
Feb 26, 2025
9d4a088
Fixed tessts
Feb 26, 2025
ffd0249
preparing merge
Feb 26, 2025
5d2f12b
finished merge maindev01 to main
Feb 26, 2025
5e92167
fixed some bugs
Feb 26, 2025
1fb4d1a
Modified the closeScanner
Esteban-Gamboa-01 Feb 27, 2025
200eeb9
Modified exit
Esteban-Gamboa-01 Feb 27, 2025
5516104
Add Extra Commands
fernando-balseca Feb 27, 2025
8dc0354
added to upper case
Feb 27, 2025
80938f5
added art and extra functions
Feb 27, 2025
2df546a
Colors Styles
fernando-balseca Feb 27, 2025
e8c9d36
Color Style
fernando-balseca Feb 27, 2025
3e16626
Delete duplicate question
fernando-balseca Feb 27, 2025
77c90d9
New ServerMenuTest
Esteban-Gamboa-01 Feb 28, 2025
3d8836b
some final tests
Feb 28, 2025
672a266
validate email working
Feb 28, 2025
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
39 changes: 39 additions & 0 deletions homework02/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
.idea/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
File renamed without changes.
22 changes: 22 additions & 0 deletions homework02/TRAKING.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Friday_21/02/2025

We have decided that homework is done by each one.
Álvaro has selected:
-the class Course
-fuctions: ENROLL, LOOKUP COURSE, SHOW TEACHERS
Moreover, Álvaro is goint to presente the homework and he is going to be the main coder.

Fernando has selected:
-the class Teacher
-fuctions: SHOW COURSES, LOOKUP STUDENT, SHOW PROFIT

Esteban has selected:
-the class Student
-fuctions: ASSIGN, SHOW STUDENTS, LOOKUP TEACHER
-the menú


This time, we are goint to create three branch:
-Álvaro is going to work in main01
-Fernando is going to work in main02
-Esteban is going to work in main03
25 changes: 25 additions & 0 deletions homework02/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>org.example</groupId>
<artifactId>homework02</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading