Skip to content
Snippets Groups Projects
Commit 31162bda authored by Martin Vogel's avatar Martin Vogel
Browse files

fix(cmd-client): fix shaded jar build and config properties

parent 646c5680
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<!-- Additional configuration. -->
</configuration>
<executions>
<execution>
<phase>package</phase>
......
......@@ -12,12 +12,10 @@ privateSigningKeyPath: "client/src/test/java/resources/private_test_signing_key.
# Path that references the metadata schema
metadataSchemaPath: "client/src/test/java/resources/metadata_schema.json"
# Sender Config
senderConfig:
clientId: "1"
clientSecret: "123"
# Subscriber Config
subscriberConfig:
clientId: "2"
clientSecret: "456"
......
......@@ -12,13 +12,11 @@ metadataSchemaPath: "path/to/metadata_schema.json"
# Path that references the signing key file
privateSigningKeyPath: "path/to/singning_key.json"
# Sender Config
sender:
senderConfig:
clientId: "SenderClientID"
clientSecret: "SenderSecret"
# Subscriber Config
subscriber:
subscriberConfig:
clientId: "SubscriberClientID"
clientSecret: "SubscriberSecret"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment