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

131 lines
4.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.insigma_oracle</groupId>
<artifactId>insigma_oracle</artifactId>
<version>4.1.0-SNAPSHOT</version>
</parent>
<groupId>com.insigma_oracle</groupId>
<artifactId>odin-web</artifactId>
<version>4.1.0-SNAPSHOT</version>
<licenses>
<license>
<name>odin-base</name>
</license>
</licenses>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<odin-est.version>2.0.0</odin-est.version>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</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.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</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>
<dependency>
<groupId>com.insigma_oracle</groupId>
<artifactId>account-entrance-web</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.insigma_oracle</groupId>
<artifactId>account-entrance-rpc</artifactId>
<version>${revision}</version>
</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>