2025-06-19 08:43:26 +08:00
|
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.njcn.gather</groupId>
|
|
|
|
|
|
<artifactId>CN_Gather</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>event_smart</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>njcn-common</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>rocket-mq-springboot-starter</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
|
<version>2.7.12</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 多数据源切换,当数据源为oracle时需要使用 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>3.5.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
|
|
|
|
<version>2.3.12</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-06-20 09:10:53 +08:00
|
|
|
|
<!--oracle驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
|
|
|
|
<artifactId>ojdbc8</artifactId>
|
|
|
|
|
|
<version>21.6.0.0</version>
|
|
|
|
|
|
</dependency>
|
2025-06-24 10:32:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.oracle.database.nls</groupId>
|
|
|
|
|
|
<artifactId>orai18n</artifactId>
|
|
|
|
|
|
<version>21.1.0.0</version> <!-- 版本号需要与你的ojdbc版本匹配 -->
|
|
|
|
|
|
</dependency>
|
2025-06-19 08:43:26 +08:00
|
|
|
|
|
2025-06-24 08:50:54 +08:00
|
|
|
|
<!-- Spring Security -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- JWT -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-06-30 16:08:24 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>common-event</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
2025-06-30 20:52:31 +08:00
|
|
|
|
<artifactId>common-microservice</artifactId>
|
2025-06-30 16:08:24 +08:00
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
2025-06-30 20:52:31 +08:00
|
|
|
|
<artifactId>common-web</artifactId>
|
2025-06-30 16:08:24 +08:00
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-06-30 20:52:31 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
<version>32.1.3-jre</version> <!-- 使用最新稳定版 -->
|
|
|
|
|
|
</dependency>
|
2025-06-30 16:08:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-06-19 08:43:26 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<finalName>event_smart</finalName>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>**/*</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
</resource>
|
2025-06-24 10:32:12 +08:00
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
</resource>
|
2025-06-19 08:43:26 +08:00
|
|
|
|
</resources>
|
2025-06-24 10:32:12 +08:00
|
|
|
|
|
2025-06-19 08:43:26 +08:00
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|