diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm deleted file mode 100644 index 4a87ac3bf6c56c..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm +++ /dev/null @@ -1,34 +0,0 @@ -#### -# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode -# -# Before building the docker image run: -# -# mvn package -# -# Then, build the image with: -# -# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/spring-data-jpa-quickstart-jvm . -# -# Then run the container using: -# -# docker run -i --rm -p 8080:8080 quarkus/spring-data-jpa-quickstart-jvm -# -### -FROM fabric8/java-alpine-openjdk8-jre:1.6.5 -ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" -ENV AB_ENABLED=jmx_exporter - -# Be prepared for running in OpenShift too -RUN adduser -G root --no-create-home --disabled-password 1001 \ - && chown -R 1001 /deployments \ - && chmod -R "g+rwX" /deployments \ - && chown -R 1001:root /deployments - -COPY target/lib/* /deployments/lib/ -COPY target/*-runner.jar /deployments/app.jar -EXPOSE 8080 - -# run with user 1001 -USER 1001 - -ENTRYPOINT [ "/deployments/run-java.sh" ] \ No newline at end of file diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native deleted file mode 100644 index 69bd36786b73cc..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native +++ /dev/null @@ -1,22 +0,0 @@ -#### -# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode -# -# Before building the docker image run: -# -# mvn package -Pnative -Dquarkus.native.container-build=true -# -# Then, build the image with: -# -# docker build -f src/main/docker/Dockerfile.native -t quarkus/spring-data-jpa-quickstart . -# -# Then run the container using: -# -# docker run -i --rm -p 8080:8080 quarkus/spring-data-jpa-quickstart -# -### -FROM registry.access.redhat.com/ubi8/ubi-minimal -WORKDIR /work/ -COPY target/*-runner /work/application -RUN chmod 775 /work -EXPOSE 8080 -CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] \ No newline at end of file diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html deleted file mode 100644 index b837d35e816616..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - spring-data-jpa-quickstart - 1.0-SNAPSHOT - - - - - - -
-
-

Congratulations, you have created a new Quarkus application.

- -

Why do you see this?

- -

This page is served by Quarkus. The source is in - src/main/resources/META-INF/resources/index.html.

- -

What can I do from here?

- -

If not already done, run the application in dev mode using: mvn compile quarkus:dev. -

- - -

How do I get rid of this page?

-

Just delete the src/main/resources/META-INF/resources/index.html file.

-
-
-
-

Application

-
    -
  • GroupId: org.acme
  • -
  • ArtifactId: spring-data-jpa-quickstart
  • -
  • Version: 1.0-SNAPSHOT
  • -
  • Quarkus Version: 1.1.0.Final
  • -
-
- -
-
- - - - \ No newline at end of file diff --git a/integration-tests/spring-data-jpa/src/main/resources/application.properties b/integration-tests/spring-data-jpa/src/main/resources/application.properties index bc8a232c881c0b..b49d7f531d4e9c 100644 --- a/integration-tests/spring-data-jpa/src/main/resources/application.properties +++ b/integration-tests/spring-data-jpa/src/main/resources/application.properties @@ -7,6 +7,4 @@ quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect quarkus.hibernate-orm.database.generation=drop-and-create #quarkus.hibernate-orm.log.sql=true -%prod.quarkus.hibernate-orm.sql-load-script=import.sql -spring.jpa.show-sql=true -spring.jpa.data.hibernate.dialect=blabla \ No newline at end of file +%prod.quarkus.hibernate-orm.sql-load-script=import.sql \ No newline at end of file