Skip to content

Commit

Permalink
fixes rename issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Oct 25, 2023
1 parent 4196a92 commit 1e08e74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion httpClients/boot-http-proxy/.yo-rc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"generator-springboot": {
"appName": "http-proxy",
"appName": "boot-http-proxy",
"packageName": "com.example.rest.proxy",
"databaseType": "postgresql",
"dbMigrationTool": "liquibase",
Expand Down
2 changes: 1 addition & 1 deletion httpClients/boot-http-proxy/Dockerfile
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/http-proxy-0.0.1-SNAPSHOT.jar
ARG JAR_FILE=target/boot-http-proxy-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} application.jar
RUN java -Djarmode=layertools -jar application.jar extract

Expand Down
2 changes: 1 addition & 1 deletion httpClients/boot-http-proxy/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pipeline {
}

environment {
APPLICATION_NAME = 'http-proxy'
APPLICATION_NAME = 'boot-http-proxy'
}

stages {
Expand Down
2 changes: 1 addition & 1 deletion httpClients/boot-http-proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# http-proxy
# boot-http-proxy

### Run tests
`$ ./mvnw clean verify`
Expand Down

0 comments on commit 1e08e74

Please sign in to comment.