mica
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica</artifactId> <version>0.0.24</version> </dependency>
<?xml version="1.0"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica</artifactId> <version>0.0.24</version> <packaging>pom</packaging> <name>Mica</name> <description>An inventory management system for ck8s</description> <url>https://github.com/concord-workflow/mica</url> <licenses> <license> <name /> <url /> <distribution /> <comments>Intentionally left blank.</comments> </license> </licenses> <developers> <developer> <id>team</id> <name>Mica Development Team</name> <roles> <role>Project Lead</role> </roles> <timezone>-5</timezone> </developer> </developers> <modules> <module>integration-tests</module> <module>mica-api</module> <module>mica-concord-server-plugin</module> <module>mica-concord-task</module> <module>mica-db</module> <module>mica-ui</module> <module>docker</module> </modules> <properties> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.url>https://github.com/concord-workflow/mica.git</project.url> <concord.version>2.18.0</concord.version> <jooq.version>3.14.0</jooq.version> <node.version>v20.8.0</node.version> <npm.version>10.2.0</npm.version> <skipITs>true</skipITs> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-targetplatform</artifactId> <version>${concord.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <!-- to allow concord-server to serve custom UIs --> <groupId>ca.ibodrov.concord</groupId> <artifactId>webapp-plugin</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.6.0</version> </dependency> <dependency> <groupId>com.fasterxml.uuid</groupId> <artifactId>java-uuid-generator</artifactId> <version>4.3.0</version> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.2.15</version> </dependency> <dependency> <!-- to apply JSON path in views --> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.8.0</version> </dependency> <dependency> <!-- to apply JSON patch in views --> <groupId>com.flipkart.zjsonpatch</groupId> <artifactId>zjsonpatch</artifactId> <version>0.4.16</version> </dependency> <dependency> <!-- to validate data --> <groupId>com.networknt</groupId> <artifactId>json-schema-validator</artifactId> <version>1.1.0</version> </dependency> <dependency> <!-- to cache view data --> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>3.1.8</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.1.2</version> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.1</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <skip>${skipITs}</skip> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.43.4</version> </plugin> <plugin> <groupId>org.jooq</groupId> <artifactId>jooq-codegen-maven</artifactId> <version>${jooq.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.1.0</version> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>1.14.0</version> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>2.23.0</version> <configuration> <configFile>${maven.multiModuleProjectDirectory}/eclipse-formatter-config.xml</configFile> <compilerSource>${maven.compiler.release}</compilerSource> <compilerCompliance>${maven.compiler.release}</compilerCompliance> <compilerTargetPlatform>${maven.compiler.release}</compilerTargetPlatform> </configuration> </plugin> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> <version>0.9.0.M2</version> <executions> <execution> <id>index</id> <goals> <goal>main-index</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <indentSize>4</indentSize> <tagNameFormat>@{project.version}</tagNameFormat> <localCheckout>true</localCheckout> <autoVersionSubmodules>true</autoVersionSubmodules> <pushChanges>false</pushChanges> <useReleaseProfile>false</useReleaseProfile> <goals>package</goals> <arguments>--batch-mode -DskipTests -Pconcord-release</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <configuration> <deployAtEnd>true</deployAtEnd> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <skipSource>true</skipSource> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-maven-plugin</artifactId> <version>2.2.16</version> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.11</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> <version>7.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> </pluginManagement> </build> <scm> <url>${project.url}</url> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:${project.url}</developerConnection> <tag>0.0.24</tag> </scm> <distributionManagement> <repository> <id>sonatype.releases</id> <name>Sonatype Releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype.snapshots</id> <name>Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>concord-release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> <quiet>true</quiet> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <skipSource>false</skipSource> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jdk21</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs>-proc:full</compilerArgs> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>github-packages</id> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/concord-workflow/mica</url> </repository> <snapshotRepository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/concord-workflow/mica</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <!-- deploy is done separately --> <goals>validate</goals> <arguments>--batch-mode -DskipTests -Pgithub-packages</arguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>