Skip to content
Merged
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
8 changes: 4 additions & 4 deletions docs/src/modules/ROOT/pages/integration/integration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ Following properties are supported in the Quarkus `application.properties`:

:property_prefix: quarkus.
:solver_name_prefix:
include::config-properties.adoc[]
include::_config-properties.adoc[]

[#integrationWithQuarkusManagedResources]
=== Injecting managed resources
Expand Down Expand Up @@ -444,7 +444,7 @@ Following properties are supported:

:property_prefix: quarkus.
:solver_name_prefix: <solverName>.
include::config-properties.adoc[]
include::_config-properties.adoc[]

==== Working with multiple Solvers

Expand Down Expand Up @@ -640,7 +640,7 @@ These properties are supported in Spring's `application.properties`:

:property_prefix:
:solver_name_prefix:
include::config-properties.adoc[]
include::_config-properties.adoc[]

[#integrationWithSpringBootManagedResources]
=== Injecting managed resources
Expand Down Expand Up @@ -809,7 +809,7 @@ Following properties are supported:

:property_prefix:
:solver_name_prefix: <solverName>.
include::config-properties.adoc[]
include::_config-properties.adoc[]

==== Working with multiple Solvers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ To complete this guide, you need:
Java/Kotlin::
+
--
include::../shared/java-prerequisites.adoc[]
include::../shared/_java-prerequisites.adoc[]
--
====

Expand Down Expand Up @@ -223,9 +223,9 @@ test {
--
====

include::../shared/school-timetabling/school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-solution.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-solution.adoc[leveloffset=+1]

== Create the application

Expand Down Expand Up @@ -675,7 +675,7 @@ To see any output in the console, logging must be configured properly.
Java/Kotlin::
+
--
include::../shared/java-logback-config.adoc[]
include::../shared/_java-logback-config.adoc[]
--
====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ and run it (see its README file).

To complete this guide, you need:

include::../shared/java-prerequisites.adoc[]
include::../shared/_java-prerequisites.adoc[]

== The build file and the dependencies

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ include::../../_attributes.adoc[]
This guide walks you through the process of creating a https://quarkus.io/[Quarkus] application
with https://timefold.ai[Timefold]'s constraint solving Artificial Intelligence (AI).

include::../shared/whatyoubuild.adoc[]
include::../shared/_whatyoubuild.adoc[]

include::../shared/solutionsourcecode.adoc[]
include::../shared/_solutionsourcecode.adoc[]

== Prerequisites

To complete this guide, you need:

include::../shared/java-prerequisites.adoc[]
include::../shared/_java-prerequisites.adoc[]

== The build file and the dependencies

Expand All @@ -44,9 +44,9 @@ Clicking the link above will automatically select the dependencies for you on *c
* Timefold Solver (`timefold-solver-quarkus`)
* Timefold Solver Jackson (`timefold-solver-quarkus-jackson`)

include::../shared/school-timetabling/school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-solution.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-solution.adoc[leveloffset=+1]

== Create the solver service

Expand Down Expand Up @@ -207,7 +207,7 @@ $ gradle --console=plain quarkusDev

====

include::../shared/try-the-application.adoc[]
include::../shared/_try-the-application.adoc[]

[NOTE]
====
Expand Down Expand Up @@ -252,7 +252,7 @@ Add the subsequent dependency to your `build.gradle`:
--
====

include::../shared/constrainttests.adoc[]
include::../shared/_constrainttests.adoc[]

==== Test the solver

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ include::../../_attributes.adoc[]
This guide walks you through the process of creating a Spring Boot application
with https://timefold.ai[Timefold]'s constraint solving Artificial Intelligence (AI).

include::../shared/whatyoubuild.adoc[]
include::../shared/_whatyoubuild.adoc[]

include::../shared/solutionsourcecode.adoc[]
include::../shared/_solutionsourcecode.adoc[]

== Prerequisites

To complete this guide, you need:

include::../shared/java-prerequisites.adoc[]
include::../shared/_java-prerequisites.adoc[]

== The build file and the dependencies

Expand All @@ -33,9 +33,9 @@ Use https://start.spring.io/[start.spring.io] to generate an application with th
* Spring Web (`spring-boot-starter-web`)
* Timefold Solver (`timefold-solver-spring-boot-starter`)

include::../shared/school-timetabling/school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/school-timetabling-solution.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-model.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-constraints.adoc[leveloffset=+1]
include::../shared/school-timetabling/_school-timetabling-solution.adoc[leveloffset=+1]

== Create the solver service

Expand Down Expand Up @@ -266,7 +266,7 @@ To test each constraint in isolation, use a `ConstraintVerifier` in unit tests.
It tests each constraint's corner cases in isolation from the other tests,
which lowers maintenance when adding a new constraint with proper test coverage.

include::../shared/constrainttests.adoc[]
include::../shared/_constrainttests.adoc[]

This test verifies that the constraint `TimetableConstraintProvider::roomConflict`,
when given three lessons in the same room, where two lessons have the same timeslot,
Expand Down
Loading