forked from loafle/openapi-generator-original
[jaxrs-spec][quarkus] update to 0.25.0 (#4185)
This commit is contained in:
parent
5a222bb570
commit
be0fc7e49f
@ -20,4 +20,12 @@ ENV AB_ENABLED=jmx_exporter
|
|||||||
COPY target/lib/* /deployments/lib/
|
COPY target/lib/* /deployments/lib/
|
||||||
COPY target/*-runner.jar /deployments/app.jar
|
COPY target/*-runner.jar /deployments/app.jar
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
|
# run with user 1001 and be prepared for be 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
|
||||||
|
USER 1001
|
||||||
|
|
||||||
ENTRYPOINT [ "/deployments/run-java.sh" ]
|
ENTRYPOINT [ "/deployments/run-java.sh" ]
|
@ -9,9 +9,11 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<surefire-plugin.version>2.22.0</surefire-plugin.version>
|
<surefire-plugin.version>2.22.0</surefire-plugin.version>
|
||||||
<quarkus.version>0.23.2</quarkus.version>
|
<maven.compiler.parameters>true</maven.compiler.parameters>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<quarkus.version>0.25.0</quarkus.version>
|
||||||
|
<compiler-plugin.version>3.8.1</compiler-plugin.version>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
@ -78,6 +80,10 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>${compiler-plugin.version}</version>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>${surefire-plugin.version}</version>
|
<version>${surefire-plugin.version}</version>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user