You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
[](https://github.com/YourGitHubId/JoyOfCodingSummer2025/actions/workflows/maven.yml)
1
+
[](https://github.com/YourGitHubId/JoyOfCodingWinter2026/actions/workflows/maven.yml)
2
2
3
3
# Getting Started with The Joy of Coding with Java and Android
4
4
@@ -71,7 +71,7 @@ developer"](https://education.github.com/pack) account that gives you
71
71
free private repositories. Then [create a private GitHub
72
72
repository from this "template" repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template)
73
73
for your source code for this course. (In this example, the
74
-
repository is named "JoyOfCodingSummer2025".)
74
+
repository is named "JoyOfCodingWinter2026".)
75
75
76
76
Again, please ensure that all of your code for the assignments is in a
77
77
**private** GitHub repository. GitHub makes it very easy for people to
@@ -99,7 +99,7 @@ The following command lines assume that you are running in the
99
99
directory created by cloning the repository.
100
100
101
101
```sh
102
-
$ cdJoyOfCodingSummer2025
102
+
$ cdJoyOfCodingWinter2026
103
103
```
104
104
105
105
### How do I use the Java Development Kit?
@@ -229,7 +229,7 @@ clone by adding the directory to git.
229
229
230
230
```sh
231
231
$ ./mvnw clean # Remove files that shouldn't be committed to version control
232
-
$ cd .. # to JoyOfCodingSummer2025 directory
232
+
$ cd .. # to JoyOfCodingWinter2026 directory
233
233
$ git add student
234
234
$ git commit -m "Added source files for student project"
235
235
```
@@ -288,7 +288,7 @@ After `ssh`ing to one of the CS Department's Linux machines, you can
288
288
make a clone of your GitHub repository using with:
To fix a bug in submitted code, create a new branch of your repository from the `submit` tag on your development system:
406
406
```shell
407
407
$ git fetch # Fetch the tag(s) from GitHub ("origin") into your local clone
408
-
$ git checkout -b fix-Project1 submit-Project1-20250117T09:00:58 # Create a branch to make fixes
408
+
$ git checkout -b fix-Project1 submit-Project1-20260117T09:00:58 # Create a branch to make fixes
409
409
$ git push --set-upstream origin fix-Project1 # Push the branch to GitHub
410
410
# Make code changes, commit them to git, and push them to the fix-Project1 branch
411
411
```
@@ -468,7 +468,7 @@ As you create Maven projects in this repository, you may encounter warnings like
468
468
```
469
469
[WARNING]
470
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 (JoyOfCodingSummer2025/apptbook/pom.xml) points at edu.pdx.cs.joy.whitlock:JoyOfCodingSummer2025 instead of io.github.davidwhitlock.joy:joy, please verify your project structure @ line 3, column 11
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
472
472
[WARNING]
473
473
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
474
474
[WARNING]
@@ -576,7 +576,7 @@ Running `mvn site` from the root directory of this repository will
576
576
generate a website that provides lots of information (reports, etc.)
577
577
about the Maven projects. Note that in order for your multi-project
578
578
Maven site to generate correctly, the subprojects must specify that
579
-
their parent project is the `JoyOfCodingSummer2025` project in
579
+
their parent project is the `JoyOfCodingWinter2026` project in
580
580
your group:
581
581
582
582
```xml
@@ -619,7 +619,7 @@ You can open `target/staging/index.html` in your web browse to see
619
619
what your site will look like.
620
620
621
621
Verify that your website is available at a URL like:
0 commit comments