coder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nb6868.onex</groupId>
<artifactId>coder</artifactId>
<version>5.0.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">
<parent>
<artifactId>onex-boot</artifactId>
<groupId>com.nb6868.onex</groupId>
<version>5.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coder</artifactId>
<name>coder</name>
<packaging>jar</packaging>
<description>onex code generator</description>
<properties>
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
<skipTests>true</skipTests>
<!-- version -->
<druid.version>1.2.24</druid.version>
<!-- <commons-configuration.version>2.12.0</commons-configuration.version>-->
<velocity.version>2.4.1</velocity.version>
<commons-collections.version>3.2.2</commons-collections.version>
<screw.version>1.0.5</screw.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>test</scope>
</dependency>
<!--<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<version>${commons-configuration.version}</version>
</dependency>-->
<!-- velocity -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>${velocity.version}</version>
</dependency>
<!-- commons-collections -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commons-collections.version}</version>
</dependency>
<!-- hutool -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
<!-- 排除AI,免得和onexai混淆 -->
<exclusions>
<exclusion>
<groupId>cn.hutool</groupId>
<artifactId>ai</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- [screw](https://github.com/pingfangushi/screw) -->
<dependency>
<groupId>cn.smallbun.screw</groupId>
<artifactId>screw-core</artifactId>
<version>${screw.version}</version>
<exclusions>
<exclusion>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>