123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?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>eladmin</artifactId>
- <groupId>me.zhengjie</groupId>
- <version>2.6</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>eladmin-system</artifactId>
- <name>核心模块</name>
- <properties>
- <jjwt.version>0.11.1</jjwt.version>
- <!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 -->
- <jna.version>5.6.0</jna.version>
- </properties>
- <dependencies>
- <!-- rabbitmq -->
- <!-- <dependency>-->
- <!-- <groupId>com.rabbitmq</groupId>-->
- <!-- <artifactId>amqp-client</artifactId>-->
- <!-- <version>3.4.1</version>-->
- <!-- </dependency>-->
- <!-- 代码生成模块 -->
- <dependency>
- <groupId>me.zhengjie</groupId>
- <artifactId>eladmin-generator</artifactId>
- <version>2.6</version>
- <exclusions>
- <exclusion>
- <groupId>me.zhengjie</groupId>
- <artifactId>eladmin-common</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-amqp</artifactId>
- </dependency>
- <!-- tools 模块包含了 common 和 logging 模块 -->
- <dependency>
- <groupId>me.zhengjie</groupId>
- <artifactId>eladmin-tools</artifactId>
- <version>2.6</version>
- </dependency>
- <!-- activiti工作流模块 -->
- <dependency>
- <groupId>me.zhengjie</groupId>
- <artifactId>eladmin-activity</artifactId>
- <version>2.6</version>
- </dependency>
- <!-- Spring boot websocket -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!-- jwt -->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-jackson</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <!-- quartz -->
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- </dependency>
- <!-- linux的管理 -->
- <dependency>
- <groupId>ch.ethz.ganymed</groupId>
- <artifactId>ganymed-ssh2</artifactId>
- <version>build210</version>
- </dependency>
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <version>0.1.55</version>
- </dependency>
- <!-- 获取系统信息 -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>5.3.6</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.rabbitmq</groupId>-->
- <!-- <artifactId>amqp-client</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-test</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- </dependency>
- </dependencies>
- <!-- 打包 -->
- <build>
- <finalName>zhcy</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <!-- 跳过单元测试 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|