Skip to content

Commit

Permalink
Fix m2k func pom
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-farache committed Jan 31, 2024
1 parent 71bec03 commit c34dc35
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 7 deletions.
86 changes: 80 additions & 6 deletions move2kube/m2k-func/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,33 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<artifactId>m2k-func</artifactId>
<parent>
<groupId>dev.parodos</groupId>
<artifactId>swf-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../swf-parent</relativePath>
</parent>
<groupId>dev.parodos</groupId>
<version>1.0.0-SNAPSHOT</version>
<properties>
<failsafe.useModulePath>false</failsafe.useModulePath>
<move2kube.version>v2.0.0</move2kube.version>
<jgit-version>6.7.0.202309050840-r</jgit-version>
<compiler-plugin.version>3.10.1</compiler-plugin.version>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.2.9.Final</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>${quarkus.platform.artifact-id}</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -146,4 +162,62 @@
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.platform.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>build</goal>
<goal>generate-code</goal>
<goal>generate-code-tests</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ broker.url=${BROKER_URL:http://broker-ingress.knative-eventing.svc.cluster.local
quarkus.rest-client.logging.scope=request-response
quarkus.rest-client.logging.body-limit=-1
quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG
# quarkus.log.level=DEBUG
quarkus.log.level=${LOG_LEVEL:INFO}
# ref: https://quarkus.io/guides/funqy-knative-events
quarkus.funqy.knative-events.mapping.saveTransformation.trigger=save-transformation

Expand Down

0 comments on commit c34dc35

Please sign in to comment.