Skip to content

Commit

Permalink
Adapt register for reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Nov 20, 2024
1 parent 63d4e12 commit 34865c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ jobs:
run: make lint-check

- name: Build Registry
run: mvn clean package -pl app -am -Dskip.npm -DskipTests=true --no-transfer-progress
run: mvn clean package -am -Dskip.npm -DskipTests=true --no-transfer-progress

- name: Run the tests
working-directory: python-sdk
Expand All @@ -357,7 +357,7 @@ jobs:
go-version: '1.20'

- name: Build Registry
run: mvn clean package -pl app -am -Dskip.npm -DskipTests=true --no-transfer-progress
run: mvn clean package -am -Dskip.npm -DskipTests=true --no-transfer-progress

- name: Run the tests
working-directory: go-sdk
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
<!-- Dependency versions -->
<lombok.version>1.18.36</lombok.version>
<commons-codec.version>1.17.1</commons-codec.version>
<commons-logging.version>1.2</commons-logging.version>
<jboss-slf4j.version>1.2.1.Final</jboss-slf4j.version>
<httpclient.version>4.5.14</httpclient.version>
<apicurio-common-rest-client.version>0.1.18.Final</apicurio-common-rest-client.version>
Expand Down Expand Up @@ -645,6 +646,11 @@
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand Down

0 comments on commit 34865c9

Please sign in to comment.