Skip to content

Commit 04b0f51

Browse files
committed
Use the Winter 2026 artifact SNAPSHOT versions. We're doing the phone bill project this term.
1 parent 90f3e45 commit 04b0f51

8 files changed

Lines changed: 13 additions & 13 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,8 @@ As you create Maven projects in this repository, you may encounter warnings like
467467

468468
```
469469
[WARNING]
470-
[WARNING] Some problems were encountered while building the effective model for edu.pdx.cs.joy.whitlock:apptbook:jar:1.0.0
471-
[WARNING] 'parent.relativePath' of POM edu.pdx.cs.joy.whitlock:apptbook:1.0.0 (JoyOfCodingWinter2026/apptbook/pom.xml) points at edu.pdx.cs.joy.whitlock:JoyOfCodingWinter2026 instead of io.github.davidwhitlock.joy:joy, please verify your project structure @ line 3, column 11
470+
[WARNING] Some problems were encountered while building the effective model for edu.pdx.cs.joy.whitlock:phonebill:jar:1.0.0
471+
[WARNING] 'parent.relativePath' of POM edu.pdx.cs.joy.whitlock:phonebill:1.0.0 (JoyOfCodingWinter2026/phonebill/pom.xml) points at edu.pdx.cs.joy.whitlock:JoyOfCodingWinter2026 instead of io.github.davidwhitlock.joy:joy, please verify your project structure @ line 3, column 11
472472
[WARNING]
473473
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
474474
[WARNING]

createFirstProject.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ else
1313
fi
1414
fi
1515

16-
createProjectFromArchetype ${loginId} "apptbook" "2.2.2"
16+
createProjectFromArchetype ${loginId} "phonebill" "2.3.0-SNAPSHOT"

createKataProject.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ fi
1515
projectName=$1
1616
teamName=$2
1717

18-
createProjectFromArchetype ${teamName} "kata" "2.2.2" ${projectName}
18+
createProjectFromArchetype ${teamName} "kata" "2.2.5-SNAPSHOT" ${projectName}

createKoansProject.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ else
1313
fi
1414
fi
1515

16-
createProjectFromArchetype ${loginId} "java-koans" "2.2.3" "koans"
16+
createProjectFromArchetype ${loginId} "java-koans" "2.2.5-SNAPSHOT" "koans"

createRESTProject.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ else
1313
fi
1414
fi
1515

16-
createProjectFromArchetype ${loginId} "apptbook-web" "3.0.2"
16+
createProjectFromArchetype ${loginId} "phonebill-web" "3.0.4-SNAPSHOT"

createStudentProject.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ else
1313
fi
1414
fi
1515

16-
createProjectFromArchetype ${loginId} "student" "2.3.3"
16+
createProjectFromArchetype ${loginId} "student" "2.3.5-SNAPSHOT"
1717

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ accordingly
1212
<parent>
1313
<artifactId>joy</artifactId>
1414
<groupId>io.github.davidwhitlock.joy</groupId>
15-
<version>1.2.2</version>
15+
<version>1.2.4-SNAPSHOT</version>
1616
</parent>
1717
<groupId>edu.pdx.cs.joy.YourUserId</groupId>
1818
<artifactId>JoyOfCoding</artifactId>

submit.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ elif [[ "$project" == "koans" ]]; then
2929
directory="koans"
3030
mavenGoals="clean exec:java"
3131

32-
elif [[ "$project" == "Project4" ]]; then
33-
directory="apptbook-web"
34-
3532
elif [[ "$project" == "Project5" ]]; then
36-
directory="apptbook-android"
33+
directory="phonebill-web"
34+
35+
elif [[ "$project" == "Project6" ]]; then
36+
directory="phonebill-android"
3737
submitClass="SubmitAndroidProject"
3838
srcDirectory="."
3939

4040
else
41-
directory="apptbook"
41+
directory="phonebill"
4242
fi
4343

4444
if [ $# -gt 1 ]; then

0 commit comments

Comments
 (0)