1 Star 0 Fork 131

李晓阳 / aicode

forked from 暖暖的阳光 / aicode 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.52 KB
一键复制 编辑 原始数据 按行查看 历史
暖暖的阳光 提交于 2020-03-08 15:36 . 增加beetl 的模板引擎
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.aicode</groupId>
<artifactId>AI-Code</artifactId>
<version>0.1</version>
<modules>
<module>AI</module>
</modules>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.ibeetl/beetl -->
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetl</artifactId>
<version>3.0.19.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<!--<repositories>-->
<!--&lt;!&ndash;<repository>&ndash;&gt;-->
<!--&lt;!&ndash;<id>public</id>&ndash;&gt;-->
<!--&lt;!&ndash;<name>aliyun nexus</name>&ndash;&gt;-->
<!--&lt;!&ndash;<url>http://maven.aliyun.com/nexus/content/groups/public/</url>&ndash;&gt;-->
<!--&lt;!&ndash;<releases>&ndash;&gt;-->
<!--&lt;!&ndash;<enabled>true</enabled>&ndash;&gt;-->
<!--&lt;!&ndash;</releases>&ndash;&gt;-->
<!--&lt;!&ndash;</repository>&ndash;&gt;-->
<!--</repositories>-->
<!--<pluginRepositories>-->
<!--&lt;!&ndash;<pluginRepository>&ndash;&gt;-->
<!--&lt;!&ndash;<id>public</id>&ndash;&gt;-->
<!--&lt;!&ndash;<name>aliyun nexus</name>&ndash;&gt;-->
<!--&lt;!&ndash;<url>http://maven.aliyun.com/nexus/content/groups/public/</url>&ndash;&gt;-->
<!--&lt;!&ndash;<releases>&ndash;&gt;-->
<!--&lt;!&ndash;<enabled>true</enabled>&ndash;&gt;-->
<!--&lt;!&ndash;</releases>&ndash;&gt;-->
<!--&lt;!&ndash;<snapshots>&ndash;&gt;-->
<!--&lt;!&ndash;<enabled>false</enabled>&ndash;&gt;-->
<!--&lt;!&ndash;</snapshots>&ndash;&gt;-->
<!--&lt;!&ndash;</pluginRepository>&ndash;&gt;-->
<!--</pluginRepositories>-->
</project>
Java
1
https://gitee.com/lxy/aicode.git
git@gitee.com:lxy/aicode.git
lxy
aicode
aicode
dev

搜索帮助