Skip to content

Commit

Permalink
rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Oct 23, 2023
1 parent 804b619 commit 6071ab4
Show file tree
Hide file tree
Showing 44 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: spring-boot-httpClients-web-client-mvc
name: httpClients-boot-web-client-mvc
on:
push:
paths:
- "httpClients/web-client-mvc/**"
- "httpClients/boot-web-client-mvc/**"
branches: [main]
pull_request:
paths:
- "httpClients/web-client-mvc/**"
- "httpClients/boot-web-client-mvc/**"
types:
- opened
- synchronize
Expand All @@ -18,16 +18,16 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "httpClients/web-client-mvc"
working-directory: "httpClients/boot-web-client-mvc"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/[email protected]
with:
java-version: 17
java-version: 21
distribution: "zulu"
cache: "maven"
- name: Build and analyze
Expand Down
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* [http-proxy](httpClients/boot-http-proxy/README.md)
* [rest-client](httpClients/boot-restclient/README.md)
* [rest-template](httpClients/boot-rest-template/README.md)
* [web-client-mvc](httpClients/web-client-mvc/README.md)
* [web-client-mvc](httpClients/boot-web-client-mvc/README.md)
* [web-client-webflux](httpClients/web-client-webflux/README.md)
* [jmh-benchmark](jmh-benchmark/README.md)
* [open-api-spring-boot](open-api-spring-boot/README.md)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"generator-springboot": {
"appName": "web-client-mvc",
"appName": "boot-web-client-mvc",
"packageName": "com.example.rest.webclient",
"databaseType": "postgresql",
"dbMigrationTool": "flywaydb",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eclipse-temurin:17.0.8_7-jre-focal as builder
WORKDIR application
ARG JAR_FILE=target/web-client-mvc-0.0.1-SNAPSHOT.jar
ARG JAR_FILE=target/boot-web-client-mvc-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} application.jar
RUN java -Djarmode=layertools -jar application.jar extract

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pipeline {
}

environment {
APPLICATION_NAME = 'web-client-mvc'
APPLICATION_NAME = 'boot-web-client-mvc'
}

stages {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# web-client-mvc
# boot-web-client-mvc

### Run tests
`$ ./mvnw clean verify`
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.5</version>
<version>3.2.0-RC1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example.rest.webclient</groupId>
<artifactId>web-client-mvc</artifactId>
<artifactId>boot-web-client-mvc</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>web-client-mvc</name>
<description>web- in mvc</description>
<name>boot-web-client-mvc</name>
<description>webclient demo using mvc</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<java.version>17</java.version>
<java.version>21</java.version>
<springdoc-openapi.version>2.2.0</springdoc-openapi.version>

<project.testresult.directory>${project.build.directory}/test-results</project.testresult.directory>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
spring.application.name=web-client-mvc
spring.application.name=boot-web-client-mvc
server.port=8080
server.shutdown=graceful
spring.main.allow-bean-definition-overriding=true
spring.jmx.enabled=false

################ Logging #####################
logging.file.name=logs/web-client-mvc.log
logging.file.name=logs/${spring.application.name}.log
logging.level.web=INFO
logging.level.sql=INFO
## To enable transaction details logging
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<module>httpClients/boot-http-proxy</module>
<module>httpClients/boot-restclient</module>
<module>httpClients/boot-rest-template</module>
<module>httpClients/web-client-mvc</module>
<module>httpClients/boot-web-client-mvc</module>
<module>httpClients/web-client-webflux</module>
<module>jpa/boot-data-customsequence</module>
<module>jpa/boot-data-multipledatasources</module>
Expand Down

0 comments on commit 6071ab4

Please sign in to comment.