concord-console2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-console2</artifactId> <version>2.32.0</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>com.walmartlabs.concord</groupId> <artifactId>parent</artifactId> <version>2.32.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>concord-console2</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <properties> <skipNpm>false</skipNpm> <node.downloadRoot>https://nodejs.org/dist/</node.downloadRoot> <npm.installCmd>ci</npm.installCmd> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <roots> <root>src</root> </roots> </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and npm</id> <phase>generate-resources</phase> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <skip>${skipNpm}</skip> </configuration> </execution> <execution> <id>npm ci</id> <goals> <goal>npm</goal> </goals> <configuration> <skip>${skipNpm}</skip> <arguments>${npm.installCmd} --legacy-peer-deps</arguments> </configuration> </execution> <execution> <id>build</id> <phase>generate-resources</phase> <goals> <goal>npm</goal> </goals> <configuration> <environmentVariables> <REACT_APP_CONCORD_VERSION>${project.version}</REACT_APP_CONCORD_VERSION> </environmentVariables> <skip>${skipNpm}</skip> <arguments>run build</arguments> </configuration> </execution> </executions> <configuration> <environmentVariables> <ADBLOCK>true</ADBLOCK> <!-- disable annoying npm postinstall messages --> </environmentVariables> <installDirectory>target</installDirectory> <nodeDownloadRoot>${node.downloadRoot}</nodeDownloadRoot> <nodeVersion>v${node.version}</nodeVersion> <workingDirectory>${basedir}</workingDirectory> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-package-descriptor</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/classes</outputDirectory> <resources> <resource> <directory>package</directory> <includes> <include>**/*</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.11</version> <executions> <execution> <id>create-checksum-file</id> <phase>prepare-package</phase> <goals> <goal>files</goal> </goals> <configuration> <fileSets> <fileSet> <directory>${project.build.directory}/classes/META-INF/console2</directory> <includes> <include>**/*.*</include> </includes> </fileSet> </fileSets> <algorithms> <algorithm>SHA-1</algorithm> </algorithms> <csvSummaryFile>classes/META-INF/console2.checksums.cvs</csvSummaryFile> <includeRelativePath>true</includeRelativePath> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>