Skip to content

Commit 1668d8c

Browse files
Removed devon4j
1 parent 273f1fb commit 1668d8c

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ A final recommendation or rule of thumb at the end of the article helps the read
8080
== Examples
8181

8282
Showing a concrete implementation explains certain circumstances better than a thousand words.
83-
Therefore, devon4j provides tiny examples that explain core concepts.
83+
Therefore, devonfw provides tiny examples that explain core concepts.
8484
The examples are located in the `examples` folder.
8585
The underlying structure should follow the structure of the website, so that examples belonging to articles can be easily found.
8686
Articles that have an example should link to the example on the website.
@@ -106,7 +106,7 @@ If it is necessary to build and deploy the application itself or third party too
106106
=== Example Business Case
107107

108108
It has shown to be better understandable, when the examples follow a common business case.
109-
In devon4j a restaurant application has always been the #1 use case.
109+
In devonfw a restaurant application has always been the #1 use case.
110110
The most common use case from the restaurant is the booking process.
111111

112112
Therefore, an example application should if possible concentrate on the booking management of a restaurant.

modules/ROOT/pages/integration/rest_openapi.adoc

+14-14
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ dependencies { // <2>
9292
9393
openApiGenerate {
9494
artifactId = "MyThaiApi-java-client"
95-
groupId = "com.devonfw.devon4j.generated.client"
96-
apiPackage = "com.devonfw.devon4j.generated.client.service"
97-
modelPackage = "com.devonfw.devon4j.generated.client.model"
98-
invokerPackage = "com.devonfw.devon4j.generated.client.handler"
95+
groupId = "com.devonfw.generated.client"
96+
apiPackage = "com.devonfw.generated.client.service"
97+
modelPackage = "com.devonfw.generated.client.model"
98+
invokerPackage = "com.devonfw.generated.client.handler"
9999
inputSpec = "${rootDir}/src/main/resources/MyThaiApi.yml" // <3>
100100
output = "${buildDir}/generated-sources/client"
101101
generatorName = "java" // <4>
@@ -149,10 +149,10 @@ Maven::
149149
</goals>
150150
<configuration>
151151
<artifactId>MyThaiApi-java-client</artifactId>
152-
<groupId>com.devonfw.devon4j.generated.client</groupId>
153-
<apiPackage>com.devonfw.devon4j.generated.client.service</apiPackage>
154-
<modelPackage>com.devonfw.devon4j.generated.client.model</modelPackage>
155-
<invokerPackage>com.devonfw.devon4j.generated.client.handler</invokerPackage>
152+
<groupId>com.devonfw.generated.client</groupId>
153+
<apiPackage>com.devonfw.generated.client.service</apiPackage>
154+
<modelPackage>com.devonfw.generated.client.model</modelPackage>
155+
<invokerPackage>com.devonfw.generated.client.handler</invokerPackage>
156156
<inputSpec>${project.basedir}/src/main/resources/MyThaiApi.yml</inputSpec>
157157
<output>${project.build.directory}/auto-generated</output>
158158
<generatorName>java</generatorName>
@@ -213,9 +213,9 @@ openApiGenerate {
213213
generatorName = "spring"
214214
library = "spring-boot" // <4>
215215
modelNameSuffix = "To"
216-
apiPackage = "com.devonfw.devon4j.generated.api.service"
217-
modelPackage = "com.devonfw.devon4j.generated.api.model"
218-
invokerPackage = "com.devonfw.devon4j.generated.api.handler"
216+
apiPackage = "com.devonfw.generated.api.service"
217+
modelPackage = "com.devonfw.generated.api.model"
218+
invokerPackage = "com.devonfw.generated.api.handler"
219219
configOptions = [
220220
sourceFolder : "src/main/java",
221221
interfaceOnly : "true",
@@ -273,9 +273,9 @@ Maven::
273273
<generatorName>spring</generatorName>
274274
<library>spring-boot</library>
275275
<modelNameSuffix>To</modelNameSuffix>
276-
<apiPackage>com.devonfw.devon4j.generated.api.service</apiPackage>
277-
<modelPackage>com.devonfw.devon4j.generated.api.model</modelPackage>
278-
<invokerPackage>com.devonfw.devon4j.generated.api.handler</invokerPackage>
276+
<apiPackage>com.devonfw.generated.api.service</apiPackage>
277+
<modelPackage>com.devonfw.generated.api.model</modelPackage>
278+
<invokerPackage>com.devonfw.generated.api.handler</invokerPackage>
279279
<configOptions>
280280
<sourceFolder>src/java/main</sourceFolder>
281281
<interfaceOnly>true</interfaceOnly>

0 commit comments

Comments
 (0)