2024-05-16项目代码归档

This commit is contained in:
2025-05-16 10:45:11 +08:00
parent 8e59145963
commit 1456f2eb4f
38 changed files with 994 additions and 118 deletions

71
v5/apps-customize/pom.xml Normal file
View File

@@ -0,0 +1,71 @@
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>com.seeyon</groupId>
<artifactId>apps-root</artifactId>
<version>5371630367615140082-standard-V8.1SP2-release_20220812-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>apps-customize</artifactId>
<version>${apps.version}</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- <dependency>-->
<!-- <groupId>com.seeyon</groupId>-->
<!-- <artifactId>cap-core</artifactId>-->
<!-- <version>${cap.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>open.seeyon.3rd</groupId>
<artifactId>hutool</artifactId>
<version>5.5.7</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/hutool-all-5.5.7.jar</systemPath>
</dependency>
<dependency>
<groupId>open.seeyon.3rd</groupId>
<artifactId>seeyon-extend</artifactId>
<version>3.0</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/seeyon-extend-v3.0.jar</systemPath>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.seeyon</groupId>-->
<!-- <artifactId>apps-weixin</artifactId>-->
<!-- <version>${apps.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.seeyon</groupId>-->
<!-- <artifactId>ctp-common</artifactId>-->
<!-- <version>${ctp.version}</version>-->
<!-- </dependency>-->
</dependencies>
</project>