mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Adding queues and queue providers; Adding schedules and ScheduleManager
This commit is contained in:
15
pom.xml
15
pom.xml
@ -36,6 +36,7 @@
|
||||
<module>qqq-middleware-picocli</module>
|
||||
<module>qqq-middleware-javalin</module>
|
||||
<module>qqq-middleware-lambda</module>
|
||||
<module>qqq-utility-lambdas</module>
|
||||
<module>qqq-sample-project</module>
|
||||
</modules>
|
||||
|
||||
@ -51,8 +52,20 @@
|
||||
<coverage.haltOnFailure>true</coverage.haltOnFailure>
|
||||
<coverage.instructionCoveredRatioMinimum>0.80</coverage.instructionCoveredRatioMinimum>
|
||||
<coverage.classCoveredRatioMinimum>0.95</coverage.classCoveredRatioMinimum>
|
||||
<plugin.shade.phase>none</plugin.shade.phase>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<!-- For qqq-middleware-lambda - to build its shaded jar, its qqq dependencies also need
|
||||
to build a shaded jar. So to activate that mode, use this profile (-P buildShadedJar)-->
|
||||
<id>buildShadedJar</id>
|
||||
<properties>
|
||||
<plugin.shade.phase>package</plugin.shade.phase>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@ -88,7 +101,7 @@
|
||||
<version>3.23.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
|
Reference in New Issue
Block a user