Skip to content

Commit f80c4e2

Browse files
committed
Name changes
1 parent 136822f commit f80c4e2

File tree

64 files changed

+242
-242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+242
-242
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
deploy:
2222

23-
# if: github.repository == 'hibernate/hibernate-jira-sync'
23+
# if: github.repository == 'hibernate/replicate-jira'
2424

2525
runs-on: ubuntu-latest
2626

@@ -47,9 +47,9 @@ jobs:
4747

4848
- name: Create ImageStream
4949
run: |
50-
oc create imagestream hibernate-jira-sync || true
50+
oc create imagestream replicate-jira || true
5151
# https://docs.openshift.com/container-platform/4.14/openshift_images/using-imagestreams-with-kube-resources.html
52-
oc set image-lookup hibernate-jira-sync
52+
oc set image-lookup replicate-jira
5353
5454
- name: Retrieve OpenShift Container Registry URL
5555
id: oc-registry
@@ -84,4 +84,4 @@ jobs:
8484
8585
- name: Deploy Helm charts
8686
run: |
87-
helm upgrade --install hibernate-jira-sync ./target/helm/openshift/hibernate-jira-sync
87+
helm upgrade --install replicate-jira ./target/helm/openshift/replicate-jira

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# hibernate-jira-sync
1+
# replicate-jira
22

33
This project uses Quarkus, the Supersonic Subatomic Java Framework.
44

@@ -49,7 +49,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
4949
./mvnw package -Dnative -Dquarkus.native.container-build=true
5050
```
5151

52-
You can then execute your native executable with: `./target/hibernate-jira-sync-1.0-SNAPSHOT-runner`
52+
You can then execute your native executable with: `./target/replicate-jira-1.0-SNAPSHOT-runner`
5353

5454
If you want to learn more about building native executables, please consult <https://quarkus.io/guides/maven-tooling>.
5555

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.hibernate.infra.sync.jira</groupId>
6-
<artifactId>hibernate-jira-sync</artifactId>
5+
<groupId>org.hibernate.infra.replicate.jira</groupId>
6+
<artifactId>replicate-jira</artifactId>
77
<version>${revision}</version>
88

99
<properties>

src/main/docker/Dockerfile.jvm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
# Then, build the image with:
99
#
10-
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/hibernate-jira-sync-jvm .
10+
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/replicate-jira-jvm .
1111
#
1212
# Then run the container using:
1313
#
14-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync-jvm
14+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira-jvm
1515
#
1616
# If you want to include the debug port into your docker image
1717
# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005.
@@ -20,7 +20,7 @@
2020
#
2121
# Then run the container using :
2222
#
23-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync-jvm
23+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira-jvm
2424
#
2525
# This image uses the `run-java.sh` script to run the application.
2626
# This scripts computes the command line to execute your Java application, and

src/main/docker/Dockerfile.legacy-jar

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
# Then, build the image with:
99
#
10-
# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/hibernate-jira-sync-legacy-jar .
10+
# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/replicate-jira-legacy-jar .
1111
#
1212
# Then run the container using:
1313
#
14-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync-legacy-jar
14+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira-legacy-jar
1515
#
1616
# If you want to include the debug port into your docker image
1717
# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005.
@@ -20,7 +20,7 @@
2020
#
2121
# Then run the container using :
2222
#
23-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync-legacy-jar
23+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira-legacy-jar
2424
#
2525
# This image uses the `run-java.sh` script to run the application.
2626
# This scripts computes the command line to execute your Java application, and

src/main/docker/Dockerfile.native

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
# Then, build the image with:
99
#
10-
# docker build -f src/main/docker/Dockerfile.native -t quarkus/hibernate-jira-sync .
10+
# docker build -f src/main/docker/Dockerfile.native -t quarkus/replicate-jira .
1111
#
1212
# Then run the container using:
1313
#
14-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync
14+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira
1515
#
1616
###
1717
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9

src/main/docker/Dockerfile.native-micro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
#
1111
# Then, build the image with:
1212
#
13-
# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/hibernate-jira-sync .
13+
# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/replicate-jira .
1414
#
1515
# Then run the container using:
1616
#
17-
# docker run -i --rm -p 8080:8080 quarkus/hibernate-jira-sync
17+
# docker run -i --rm -p 8080:8080 quarkus/replicate-jira
1818
#
1919
###
2020
FROM quay.io/quarkus/quarkus-micro-image:2.0

src/main/java/org/hibernate/infra/sync/jira/JiraConfig.java renamed to src/main/java/org/hibernate/infra/replicate/jira/JiraConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.hibernate.infra.sync.jira;
1+
package org.hibernate.infra.replicate.jira;
22

33
import java.net.URI;
44
import java.util.Base64;

src/main/java/org/hibernate/infra/sync/jira/ProcessingConfig.java renamed to src/main/java/org/hibernate/infra/replicate/jira/ProcessingConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.hibernate.infra.sync.jira;
1+
package org.hibernate.infra.replicate.jira;
22

33
import io.smallrye.config.ConfigMapping;
44
import io.smallrye.config.WithDefault;

src/main/java/org/hibernate/infra/sync/jira/health/IsAppRunningCheck.java renamed to src/main/java/org/hibernate/infra/replicate/jira/health/IsAppRunningCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.hibernate.infra.sync.jira.health;
1+
package org.hibernate.infra.replicate.jira.health;
22

33
import jakarta.enterprise.context.ApplicationScoped;
44
import org.eclipse.microprofile.health.HealthCheck;

0 commit comments

Comments
 (0)