Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 62d0dc4

Browse files
build: Fix ci checkstyle profile.
1 parent 4010b1d commit 62d0dc4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

‎pom.xml‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -518,16 +518,6 @@
518518
<groupId>org.apache.maven.plugins</groupId>
519519
<artifactId>maven-checkstyle-plugin</artifactId>
520520
<version>${maven-checkstyle-plugin.version}</version>
521-
<configuration>
522-
<excludes>**/module-info.java</excludes>
523-
<includeTestSourceDirectory>true</includeTestSourceDirectory>
524-
<configLocation>etc/checkstyle/config.xml</configLocation>
525-
<suppressionsLocation>etc/checkstyle/suppressions.xml</suppressionsLocation>
526-
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
527-
<consoleOutput>true</consoleOutput>
528-
<failsOnError>true</failsOnError>
529-
<includeTestSourceDirectory>true</includeTestSourceDirectory>
530-
</configuration>
531521
<dependencies>
532522
<dependency>
533523
<groupId>com.puppycrawl.tools</groupId>
@@ -608,6 +598,16 @@
608598
</goals>
609599
<phase>validate</phase>
610600
<inherited>true</inherited>
601+
<configuration combine.self="override">
602+
<excludes>**/module-info.java</excludes>
603+
<includeTestSourceDirectory>true</includeTestSourceDirectory>
604+
<configLocation>etc/checkstyle/config.xml</configLocation>
605+
<suppressionsLocation>etc/checkstyle/suppressions.xml</suppressionsLocation>
606+
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
607+
<consoleOutput>true</consoleOutput>
608+
<failsOnError>true</failsOnError>
609+
<includeTestSourceDirectory>true</includeTestSourceDirectory>
610+
</configuration>
611611
</execution>
612612
</executions>
613613
</plugin>
45.8 KB
Loading[フレーム]

‎src/main/antora/modules/ROOT/pages/faq.adoc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ but especially our own variant of it, the `CypherdslConditionExecutor`. Both xre
11511151
the full queries we create for you. Thus, you will have the domain fully populated together with custom conditions.
11521152
Of course, your conditions must work with what we generate. Find the names of the root node, the related nodes and more
11531153
xref:appendix/custom-queries.adoc#custom-queries[here].
1154-
* Use the http://neo4j-contrib.github.io/cypher-dsl/current/[Cypher-DSL] via the `CypherdslStatementExecutor` or the `ReactiveCypherdslStatementExecutor`.
1154+
* Use the https://neo4j.github.io/cypher-dsl[Cypher-DSL] via the `CypherdslStatementExecutor` or the `ReactiveCypherdslStatementExecutor`.
11551155
The Cypher-DSL is predestined to create dynamic queries. In the end, it's what SDN uses under the hood anyway. The corresponding
11561156
mixins work both with the domain type of repository itself and with projections (something that the mixins for adding
11571157
conditions don't).

‎src/main/antora/modules/ROOT/pages/repositories/sdn-extension.adoc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Additional mixins provided are:
2929
Both the `QuerydslPredicateExecutor` and `CypherdslConditionExecutor` provide the same concept: SDN generates a query, you
3030
provide "predicates" (Query DSL) or "conditions" (Cypher DSL) that will be added. We recommend the Cypher DSL, as this is
3131
what SDN uses natively. You might even want to consider using the
32-
http://neo4j-contrib.github.io/cypher-dsl/2021.1.1/#thespringdataneo4j6annotationprocessor[annotation processor] that generates
32+
https://neo4j.github.io/cypher-dsl#thespringdataneo4j6annotationprocessor[annotation processor] that generates
3333
a static meta model for you.
3434

3535
How does that work? Declare your repository as described above and add *one* of the following interfaces:

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /