Skip to content

docs: update enterprise run description#1063

Merged
triceo merged 11 commits into
TimefoldAI:developmentfrom
TomCools:update-enterprise-runs
Apr 21, 2026
Merged

docs: update enterprise run description#1063
triceo merged 11 commits into
TimefoldAI:developmentfrom
TomCools:update-enterprise-runs

Conversation

@TomCools

Copy link
Copy Markdown
Collaborator

Description of the change

Clarified the description of running with a licensed edition.

Copilot AI review requested due to automatic review settings April 21, 2026 14:54
@TomCools
TomCools requested a review from triceo as a code owner April 21, 2026 14:54

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates multiple quickstart READMEs to clarify how to run the examples with a licensed (Plus/Enterprise) edition, consolidating the run instructions into a single “Run the application” flow.

Changes:

  • Remove the separate “Run the application with Enterprise Edition” sections and TOC entries.
  • Add an optional license-key setup step and split run commands into Community vs Plus/Enterprise variants.
  • Standardize wording across Java and Kotlin quickstarts (Quarkus and Spring Boot).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 22 comments.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition run instructions into the main run section.
java/vehicle-routing/README.md Consolidates licensed-edition run instructions into the main run section.
java/tournament-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/task-assigning/README.md Consolidates licensed-edition run instructions into the main run section.
java/spring-boot-integration/README.md Consolidates licensed-edition run instructions into the main run section (Maven/Gradle).
java/sports-league-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/school-timetabling/README.md Consolidates licensed-edition run instructions into the main run section (Maven/Gradle).
java/project-job-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/order-picking/README.md Consolidates licensed-edition run instructions into the main run section.
java/meeting-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/maintenance-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/food-packaging/README.md Consolidates licensed-edition run instructions into the main run section.
java/flight-crew-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/facility-location/README.md Consolidates licensed-edition run instructions into the main run section.
java/employee-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/conference-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/bed-allocation/README.md Consolidates licensed-edition run instructions into the main run section.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/vehicle-routing/README.md Outdated
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.

4. Click on the **Solve** button.
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/sports-league-scheduling/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/meeting-scheduling/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/flight-crew-scheduling/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/facility-location/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/spring-boot-integration/README.md Outdated
Comment on lines 43 to 58
3. Start the application with Maven:

## Run the application with Enterprise Edition
1. Community Edition

```sh
$ mvn spring-boot:run
```

For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
or with Gradle:

1. Start the application with Maven:
```sh
$ gradle bootRun
```

2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the pom.xml for the implementation details.

Comment thread java/spring-boot-integration/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/school-timetabling/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/maintenance-scheduling/README.md Outdated
```

2. Start the application with Maven:
2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Comment thread java/bed-allocation/README.md Outdated
$ cd timefold-quickstarts/java/bed-allocation
```

2. (Optional) If you want to run a licensed edition (Plus / Enterprise) setup your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
Copilot AI review requested due to automatic review settings April 21, 2026 15:03

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates multiple quickstart READMEs to clarify how to run the projects with a licensed Timefold edition by integrating Plus/Enterprise run instructions into the main “Run the application” section.

Changes:

  • Removes the separate “Run the application with Enterprise Edition” section and TOC entry, replacing it with a combined Community vs Plus/Enterprise instruction block.
  • Adds an explicit optional step to set up the license key (via the Timefold license tool) before running licensed editions.
  • Standardizes wording about using a build profile to switch to licensed artifacts.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Adds optional license setup step and consolidates Community vs Plus/Enterprise run instructions.
java/vehicle-routing/README.md Same consolidation plus updated live-coding bullet formatting.
java/tournament-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/task-assigning/README.md Same consolidation of enterprise instructions into main run steps.
java/spring-boot-integration/README.md Same consolidation; documents -Denterprise=true for Maven/Gradle.
java/sports-league-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/school-timetabling/README.md Same consolidation; includes both Maven and Gradle run commands for Community and Plus/Enterprise.
java/project-job-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/order-picking/README.md Same consolidation of enterprise instructions into main run steps.
java/meeting-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/maintenance-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/food-packaging/README.md Same consolidation of enterprise instructions into main run steps.
java/flight-crew-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/facility-location/README.md Same consolidation of enterprise instructions into main run steps.
java/employee-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/conference-scheduling/README.md Same consolidation of enterprise instructions into main run steps.
java/bed-allocation/README.md Same consolidation; renumbers steps to include optional license setup.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/school-timetabling/README.md Outdated
$ mvn clean quarkus:dev -Denterprise
```
```sh
$ gradle quarkusDev -Denterprise
Comment thread java/school-timetabling/README.md Outdated
Comment thread java/vehicle-routing/README.md Outdated
- Refresh your browser (F5).

Notice that those changes are immediately in effect.
- Refresh your browser (F5).
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:14

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates quickstart README run instructions to better explain how to run with licensed Timefold editions (Plus/Enterprise), consolidating the guidance into the main “Run the application” section.

Changes:

  • Removed separate “Run the application with Enterprise Edition” sections and TOC entries.
  • Added an optional step to set up a license key via the Timefold license tool.
  • Documented Community vs Plus/Enterprise run commands (including profile/flag usage).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition guidance into the main run steps and removes the standalone Enterprise section.
java/vehicle-routing/README.md Same doc restructuring for licensed vs community run instructions.
java/tournament-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/task-assigning/README.md Same doc restructuring for licensed vs community run instructions.
java/spring-boot-integration/README.md Adds license-key setup note and clarifies Community vs Plus/Enterprise run commands for Maven/Gradle.
java/sports-league-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/school-timetabling/README.md Adds combined Community vs Plus/Enterprise run instructions for Maven and Gradle.
java/project-job-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/order-picking/README.md Same doc restructuring for licensed vs community run instructions.
java/meeting-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/maintenance-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/food-packaging/README.md Same doc restructuring for licensed vs community run instructions.
java/flight-crew-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/facility-location/README.md Same doc restructuring for licensed vs community run instructions.
java/employee-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/conference-scheduling/README.md Same doc restructuring for licensed vs community run instructions.
java/bed-allocation/README.md Same doc restructuring for licensed vs community run instructions (including license-key setup note).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/school-timetabling/README.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:18

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates quickstart READMEs to clarify how to run the licensed editions (Plus / Enterprise) by folding the prior “Enterprise Edition” section into the main “Run the application” flow and pointing users to license setup first.

Changes:

  • Remove separate “Run the application with Enterprise Edition” sections and TOC entries.
  • Add an optional license setup step and present Community vs Plus/Enterprise run commands side-by-side.
  • Minor copy updates to the live-coding instructions in some READMEs.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition run guidance into the main run section with a license setup step.
java/vehicle-routing/README.md Same consolidation; adds Community vs Plus/Enterprise command split.
java/tournament-scheduling/README.md Same consolidation; removes standalone Enterprise section and TOC entry.
java/task-assigning/README.md Same consolidation; adds license setup step and enterprise command.
java/spring-boot-integration/README.md Same consolidation for Spring Boot; includes Maven/Gradle commands for Community and licensed editions.
java/sports-league-scheduling/README.md Same consolidation; removes separate Enterprise section and TOC entry.
java/school-timetabling/README.md Same consolidation; includes both Maven and Gradle commands for Community and licensed editions.
java/project-job-scheduling/README.md Same consolidation; adds license setup step and enterprise command.
java/order-picking/README.md Same consolidation; removes standalone Enterprise section and TOC entry.
java/meeting-scheduling/README.md Same consolidation; adds license setup step and enterprise command.
java/maintenance-scheduling/README.md Same consolidation; removes standalone Enterprise section and TOC entry.
java/food-packaging/README.md Same consolidation; adds license setup step and enterprise command.
java/flight-crew-scheduling/README.md Same consolidation; removes standalone Enterprise section and TOC entry.
java/facility-location/README.md Same consolidation; adds license setup step and enterprise command.
java/employee-scheduling/README.md Same consolidation; removes standalone Enterprise section and TOC entry.
java/conference-scheduling/README.md Same consolidation; adds license setup step and enterprise command.
java/bed-allocation/README.md Same consolidation; removes standalone Enterprise section and TOC entry.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Then try _live coding_:

- Make some changes in the source code.
- Refresh your browser (F5).
Comment thread java/school-timetabling/README.md Outdated
4. Click on the **Solve** button.

Then try _live coding_:
3. Start the application with Maven:
Comment thread java/spring-boot-integration/README.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:23

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR clarifies how to run each quickstart with a licensed edition (Plus/Enterprise) by consolidating the instructions into the main “Run the application” section and removing the dedicated “Enterprise Edition” subsection.

Changes:

  • Remove “Run the application with Enterprise Edition” from the table of contents and delete the separate section.
  • Add an optional “set up your license key” step before running.
  • Provide side-by-side run commands for Community vs Plus/Enterprise (via -Denterprise / -Denterprise=true, depending on build tool).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition run instructions into the main run flow.
java/vehicle-routing/README.md Removes separate Enterprise section; adds optional license setup + Enterprise command.
java/tournament-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/task-assigning/README.md Same consolidation of licensed-edition run instructions.
java/spring-boot-integration/README.md Same consolidation; adds Maven/Gradle Community vs Enterprise commands.
java/sports-league-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/school-timetabling/README.md Same consolidation; includes both Maven and Gradle commands.
java/project-job-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/order-picking/README.md Same consolidation of licensed-edition run instructions.
java/meeting-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/maintenance-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/food-packaging/README.md Same consolidation of licensed-edition run instructions.
java/flight-crew-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/facility-location/README.md Same consolidation of licensed-edition run instructions.
java/employee-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/conference-scheduling/README.md Same consolidation of licensed-edition run instructions.
java/bed-allocation/README.md Same consolidation of licensed-edition run instructions.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/school-timetabling/README.md Outdated
Comment on lines +44 to +56
3. Start the application with Maven:

- Make some changes in the source code.
- Refresh your browser (F5).
1. Community Edition

```sh
$ mvn quarkus:dev
```

Notice that those changes are immediately in effect.
or with Gradle:

## Run the application with Enterprise Edition
```sh
$ gradle quarkusDev
```
Comment thread java/spring-boot-integration/README.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:31

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates multiple quickstart READMEs to clarify how to run the licensed editions (Plus / Enterprise) by integrating the instructions directly into the main “Run the application” flow and removing the separate “Run the application with Enterprise Edition” section.

Changes:

  • Removed the dedicated “Run the application with Enterprise Edition” section (and TOC entry) from affected READMEs.
  • Added an optional “set up your license key” step and split run commands into “Community Edition” vs “Plus / Enterprise Edition”.
  • Standardized wording around how the build/profile switches artifacts for licensed editions.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Integrates licensed-edition setup and command into the main run instructions; removes separate Enterprise section.
java/vehicle-routing/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/tournament-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/task-assigning/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/spring-boot-integration/README.md Same restructure, including Maven and Gradle commands for both editions.
java/sports-league-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/school-timetabling/README.md Same restructure, including Maven and Gradle commands for both editions.
java/project-job-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/order-picking/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/meeting-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/maintenance-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/food-packaging/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/flight-crew-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/facility-location/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/employee-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/conference-scheduling/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.
java/bed-allocation/README.md Same restructure: optional license setup + Community vs Plus/Enterprise commands; removes separate Enterprise section.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/school-timetabling/README.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:36

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates multiple quickstart READMEs to clarify how to run each application using a licensed Timefold edition (Plus / Enterprise), consolidating the guidance into the main “Run the application” flow instead of a separate “Enterprise Edition” section.

Changes:

  • Removed the dedicated “Run the application with Enterprise Edition” section and its TOC entry across several READMEs.
  • Added an optional step to set up a license key via the Timefold license tool, and documented the Community vs Plus/Enterprise run commands.
  • Standardized the explanation that the build/profile switches dependencies/artifacts to the licensed variant (with pointers to pom.xml / build.gradle).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Merges licensed-edition run instructions into the main run section and adds license-key setup note.
java/vehicle-routing/README.md Consolidates Community vs Plus/Enterprise run commands and removes separate Enterprise section/TOC entry.
java/tournament-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/task-assigning/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/spring-boot-integration/README.md Adds license-key setup note and Community vs Plus/Enterprise commands for Maven/Gradle; removes separate Enterprise section/TOC entry.
java/sports-league-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/school-timetabling/README.md Adds license-key setup note and Community vs Plus/Enterprise commands for Maven/Gradle; removes separate Enterprise section/TOC entry.
java/project-job-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/order-picking/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/meeting-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/maintenance-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/food-packaging/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/flight-crew-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/facility-location/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/employee-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/conference-scheduling/README.md Same consolidation of licensed-edition run instructions into the main flow.
java/bed-allocation/README.md Same consolidation of licensed-edition run instructions into the main flow.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/spring-boot-integration/README.md
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:40

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates multiple quickstart READMEs to clarify how to run each application with a licensed Timefold edition (Plus/Enterprise), folding the instructions into the main “Run the application” section.

Changes:

  • Add an optional pre-step to set up a license key (linking to the Timefold license tool).
  • Consolidate Community vs Plus/Enterprise run commands under the main run instructions.
  • Remove the standalone “Run the application with Enterprise Edition” section and its TOC entry.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition run instructions into the main run section.
java/vehicle-routing/README.md Adds license pre-step and splits run commands by Community vs Plus/Enterprise.
java/tournament-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/task-assigning/README.md Consolidates licensed-edition run instructions into the main run section.
java/spring-boot-integration/README.md Adds license pre-step and clarifies Maven/Gradle commands for Community vs Plus/Enterprise.
java/sports-league-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/school-timetabling/README.md Adds license pre-step and clarifies both Maven and Gradle commands for licensed edition.
java/project-job-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/order-picking/README.md Consolidates licensed-edition run instructions into the main run section.
java/meeting-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/maintenance-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/food-packaging/README.md Consolidates licensed-edition run instructions into the main run section.
java/flight-crew-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/facility-location/README.md Consolidates licensed-edition run instructions into the main run section.
java/employee-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/conference-scheduling/README.md Consolidates licensed-edition run instructions into the main run section.
java/bed-allocation/README.md Consolidates licensed-edition run instructions into the main run section.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/bed-allocation/README.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 21, 2026 15:46

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates multiple quickstart READMEs to consolidate “licensed edition” (Plus/Enterprise) run instructions into the main “Run the application” flow, instead of maintaining separate “Run with Enterprise Edition” sections.

Changes:

  • Removed “Run the application with Enterprise Edition” sections and corresponding TOC entries across several quickstarts.
  • Added an optional license-key setup step and split run commands into “Community” vs “Plus / Enterprise” variants.
  • Standardized wording around how the licensed edition is enabled (via Maven profile or build configuration).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
kotlin/school-timetabling/README.md Consolidates licensed-edition instructions into the main run steps and removes the separate Enterprise section.
java/vehicle-routing/README.md Same consolidation and updated run commands for licensed edition.
java/tournament-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/task-assigning/README.md Same consolidation and updated run commands for licensed edition.
java/spring-boot-integration/README.md Consolidates licensed-edition instructions for both Maven and Gradle run paths.
java/sports-league-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/school-timetabling/README.md Consolidates licensed-edition instructions; includes Maven/Gradle variants.
java/project-job-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/order-picking/README.md Same consolidation and updated run commands for licensed edition.
java/meeting-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/maintenance-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/food-packaging/README.md Same consolidation and updated run commands for licensed edition.
java/flight-crew-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/facility-location/README.md Same consolidation and updated run commands for licensed edition.
java/employee-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/conference-scheduling/README.md Same consolidation and updated run commands for licensed edition.
java/bed-allocation/README.md Same consolidation and updated run commands for licensed edition.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread java/school-timetabling/README.md
@triceo
triceo merged commit 584ac89 into TimefoldAI:development Apr 21, 2026
49 of 53 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants