chainstack-cdl-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>chainstack-cdl-core</artifactId>
<version>2.0.7-rc</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">
<parent>
<artifactId>chainstack-cdl-codegen</artifactId>
<groupId>com.alipay.chainstack</groupId>
<version>2.0.7-rc</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>chainstack-cdl-core</artifactId>
<properties>
<maven-model.version>3.2.5</maven-model.version>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>chainstack-cdl-commons</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>mychain-ittest</artifactId>
<exclusions>
<exclusion>
<artifactId>netty-handler</artifactId>
<groupId>io.netty</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>com.google.googlejavaformat</groupId>
<artifactId>google-java-format</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>jbcc-mychain</artifactId>
<exclusions>
<exclusion>
<artifactId>mykms-client</artifactId>
<groupId>com.alipay.mychain.mykms</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>provider-mychainx</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>provider-baas-rest</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.chainstack</groupId>
<artifactId>chainstack-utils</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${maven-model.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>internal</id>
<activation>
<property>
<name>cstack.internal</name>
</property>
</activation>
<build>
<resources>
<resource>
<directory>src/main/resources/internal</directory>
</resource>
<resource>
<directory>src/main/resources/shared</directory>
</resource>
</resources>
</build>
</profile>
<profile>
<id>open</id>
<activation>
<property>
<name>!cstack.internal</name>
</property>
</activation>
<build>
<resources>
<resource>
<directory>src/main/resources/open</directory>
</resource>
<resource>
<directory>src/main/resources/shared</directory>
</resource>
</resources>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<configuration>
<generateGitPropertiesFilename>${project.build.outputDirectory}/core-git.properties</generateGitPropertiesFilename>
</configuration>
</plugin>
</plugins>
</build>
</project>