mica-concord-task
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica-concord-task</artifactId> <version>0.0.33</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica</artifactId> <version>0.0.33</version> </parent> <artifactId>mica-concord-task</artifactId> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.walmartlabs.concord.runtime.v2</groupId> <artifactId>concord-runtime-sdk-v2</artifactId> <scope>provided</scope> </dependency> <!-- for SensitiveDataHolder --> <dependency> <groupId>com.walmartlabs.concord.runtime.v2</groupId> <artifactId>concord-runner-v2</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/filtered-resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <executions> <execution> <id>check-format</id> <goals> <goal>validate</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> </plugins> </build> </project>