akcore
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>akcore</artifactId>
<version>1.14.0</version>
</dependency><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.gitee.l0km</groupId>
<artifactId>authkernel</artifactId>
<version>1.14.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>akcore</artifactId>
<packaging>jar</packaging>
<name>authkernel core client</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<codegen.dir>${project.basedir}/src/cpp/client</codegen.dir>
<stub.dir>${project.basedir}/src/thrift/java</stub.dir>
<automatic.module.name>akcore</automatic.module.name>
<!-- 用于裁剪装饰类的方法标签 -->
<thrift.client.decorator.tags>device</thrift.client.decorator.tags>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>authkernel-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>${jna.version}</version>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>com4j-base</artifactId>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>com4j-cli</artifactId>
<version>${com4j.version}</version>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>com4j-basex</artifactId>
<version>${com4j.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<!-- 配置sql2java文件夹,用于保存sql2java生成的代码 -->
<execution>
<id>add-source</id>
<configuration>
<sources>
<source>src/sql2java/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<!-- 生成AuthKernel接口的client实现代码(CPP) -->
<plugin>
<groupId>com.gitee.l0km</groupId>
<artifactId>codegen-thrift-maven-plugin</artifactId>
<version>${codegen.version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<interfaceClass>net.facelib.authkernel.AuthKernel</interfaceClass>
<package>net.facelib.authkernel.thrift</package>
<outputDir>${codegen.dir}</outputDir>
<sourcePath>${project.basedir}/../authkernel-common/src/main/java;${project.basedir}/../authkernel-base/src/main/java;${project.basedir}/../authkernel-db/src/main/java</sourcePath>
<thriftPackage>facelib</thriftPackage>
<taskType>CLIENT</taskType>
<language>CPP</language>
<!-- <requiredTags>${thrift.client.decorator.tags}</requiredTags> -->
<extStructs>net.facelib.authkernel.db.PermitBean</extStructs>
</configuration>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>authkernel-base</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>