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/*-runner.jar /deployments/app.jar
|
||||
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" ]
|
@ -9,9 +9,11 @@
|
||||
<properties>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<surefire-plugin.version>2.22.0</surefire-plugin.version>
|
||||
<quarkus.version>0.23.2</quarkus.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.parameters>true</maven.compiler.parameters>
|
||||
<quarkus.version>0.25.0</quarkus.version>
|
||||
<compiler-plugin.version>3.8.1</compiler-plugin.version>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
@ -78,6 +80,10 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>${compiler-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${surefire-plugin.version}</version>
|
||||
|
Loading…
x
Reference in New Issue
Block a user