benten-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.intuit.benten</groupId> <artifactId>benten-core</artifactId> <version>0.1.5</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.intuit.benten</groupId> <artifactId>benten-parent</artifactId> <version>0.1.5</version> </parent> <groupId>com.intuit.benten</groupId> <artifactId>benten-core</artifactId> <packaging>jar</packaging> <!--<parent>--> <!--<groupId>org.springframework.boot</groupId>--> <!--<artifactId>spring-boot-starter-parent</artifactId>--> <!--<version>1.5.10.RELEASE</version>--> <!--<relativePath/> <!– lookup parent from repository –>--> <!--</parent>--> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>ai.api</groupId> <artifactId>libai</artifactId> <version>1.6.12</version> </dependency> <dependency> <groupId>com.github.xuwei-k</groupId> <artifactId>html2image</artifactId> <version>0.1.0</version> </dependency> <dependency> <groupId>com.pdfcrowd</groupId> <artifactId>pdfcrowd</artifactId> <version>4.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.2</version> </dependency> <dependency> <groupId>com.github.allbegray</groupId> <artifactId>slack-api</artifactId> <version>v1.5.1.RELEASE</version> </dependency> <dependency> <groupId>com.intuit.benten</groupId> <artifactId>benten-common</artifactId> <version>${project.version}</version> </dependency> </dependencies> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> </project>