1 Star 0 Fork 0

zhych / laboratory-java

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.95 KB
一键复制 编辑 原始数据 按行查看 历史
zhych 提交于 2021-05-25 09:27 . init
<?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>
<groupId>t.i</groupId>
<artifactId>demo</artifactId>
<version>0.1</version>
<modules>
<module>multi-db</module>
<module>multi-jdbc</module>
</modules>
<name>demo</name>
<description>demo for all experiences</description>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<!-- 开发工具 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
<scope>provided</scope>
</dependency>
<!--测试-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
<spring-boot.version>2.2.0.RELEASE</spring-boot.version>
<spring-jms.version>5.2.0.RELEASE</spring-jms.version>
<postgresql.version>42.2.8</postgresql.version>
<druid.version>1.1.20</druid.version>
<spring.boot.mybatis.version>2.1.1</spring.boot.mybatis.version>
<mybatis-plus.version>3.2.0</mybatis-plus.version>
<javax.jms-api.version>2.0.1</javax.jms-api.version>
<activemq-core.version>5.7.0</activemq-core.version>
<elastic-job.version>2.1.5</elastic-job.version>
<mysql.version>8.0.13</mysql.version>
</properties>
<dependencyManagement>
<dependencies>
<!--spring框架-->
<!-- <dependency>-->
<!-- <groupId>org.springframework</groupId>-->
<!-- <artifactId>spring-jms</artifactId>-->
<!-- <version>${spring-jms.version}</version>-->
<!-- </dependency>-->
<!-- 定时任务框架 -->
<!-- <dependency>-->
<!-- <groupId>com.dangdang</groupId>-->
<!-- <artifactId>elastic-job-lite-core</artifactId>-->
<!-- <version>${elastic-job.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.dangdang</groupId>-->
<!-- <artifactId>elastic-job-lite-spring</artifactId>-->
<!-- <version>${elastic-job.version}</version>-->
<!-- </dependency>-->
<!-- 数据库相关 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${spring.boot.mybatis.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<!--消息队列-->
<!-- <dependency>-->
<!-- <groupId>javax.jms</groupId>-->
<!-- <artifactId>javax.jms-api</artifactId>-->
<!-- <version>${javax.jms-api.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.activemq</groupId>-->
<!-- <artifactId>activemq-core</artifactId>-->
<!-- <version>${activemq-core.version}</version>-->
<!-- </dependency>-->
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/iamopener/laboratory-java.git
git@gitee.com:iamopener/laboratory-java.git
iamopener
laboratory-java
laboratory-java
master

搜索帮助