Files
pub-insigma-spring6-springb…/template/odin-web/pom.xml
2025-10-27 16:59:33 +08:00

118 lines
4.0 KiB
XML

<?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>
<parent>
<groupId>{{.groupId}}</groupId>
<artifactId>{{.artifactId}}</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>odin-web</artifactId>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<odin-est.version>2.0.0</odin-est.version>
</properties>
<dependencies>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-core</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-security-web</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-security-firewall</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-security-jasypt</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-file-storage-mongo</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-scheduler-quartz</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-redis-session</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-web-support-ep-dev</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-web-support-excel</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-web-support-module</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-log-core</artifactId>
</dependency>
<dependency>
<groupId>com.insigma</groupId>
<artifactId>odin-est</artifactId>
<version>${odin-est.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
</dependency>
<dependency>
<groupId>com.dameng</groupId>
<artifactId>DmJdbcDriver18</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>odin-web</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
</project>