1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- 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.va.shWasher</groupId>
- <artifactId>sw-modules</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>sw-generator</artifactId>
- <name>${project.artifactId}</name>
- <description>代码生成器</description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.va.shWasher</groupId>
- <artifactId>sw-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.va.shWasher</groupId>
- <artifactId>sw-common-doc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.va.shWasher</groupId>
- <artifactId>sw-common-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.va.shWasher</groupId>
- <artifactId>sw-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.va.shWasher</groupId>
- <artifactId>sw-common-log</artifactId>
- </dependency>
- <!--velocity代码生成使用模板 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.anyline</groupId>
- <artifactId>anyline-environment-spring-data-jdbc</artifactId>
- <version>${anyline.version}</version>
- </dependency>
- <dependency>
- <groupId>org.anyline</groupId>
- <artifactId>anyline-data-jdbc-mysql</artifactId>
- <version>${anyline.version}</version>
- </dependency>
- <!-- anyline支持100+种类型数据库 添加对应的jdbc依赖与anyline对应数据库依赖包即可 -->
- <!-- <dependency>-->
- <!-- <groupId>org.anyline</groupId>-->
- <!-- <artifactId>anyline-data-jdbc-oracle</artifactId>-->
- <!-- <version>${anyline.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.anyline</groupId>-->
- <!-- <artifactId>anyline-data-jdbc-postgresql</artifactId>-->
- <!-- <version>${anyline.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.anyline</groupId>-->
- <!-- <artifactId>anyline-data-jdbc-mssql</artifactId>-->
- <!-- <version>${anyline.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|