File tree Expand file tree Collapse file tree
core/src/test/java/org/jsmart/zerocode/core/runner Expand file tree Collapse file tree Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 351351 <groupId >org.apache.maven.plugins</groupId >
352352 <artifactId >maven-surefire-plugin</artifactId >
353353 <version >${maven-surefire-plugin.version} </version >
354- <configuration >
355- <!-- Required on Java 17+: zerocode tests mutate annotations at runtime
356- via deep reflection into java.lang and java.lang.reflect internals -->
357- <argLine >
358- --add-opens java.base/java.lang=ALL-UNNAMED
359- --add-opens java.base/java.lang.reflect=ALL-UNNAMED
360- </argLine >
361- </configuration >
362354 </plugin >
363355 <plugin >
364356 <groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ echo " Starting Kafka (schema-registry-m3)..."
5+ docker compose -f docker/compose/kafka-schema-registry-m3.yml up -d
6+
7+ echo " Starting PostgreSQL..."
8+ docker compose -f docker/compose/pg_compose.yml up -d
9+
10+ echo " Waiting for services to be ready..."
11+ sleep 10
12+
13+ echo " All services started."
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " Stopping Kafka (schema-registry-m3)..."
4+ docker compose -f docker/compose/kafka-schema-registry-m3.yml down
5+
6+ echo " Stopping PostgreSQL..."
7+ docker compose -f docker/compose/pg_compose.yml down
8+
9+ echo " All services stopped."
You can’t perform that action at this time.
0 commit comments