Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
ServerModel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
kiritoausna
ServerModel
Commits
573ab06a
Commit
573ab06a
authored
Dec 04, 2024
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024.12.04
parent
3c3d6ce5
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
512 additions
and
2 deletions
+512
-2
application.yml
gemho-admin/src/main/resources/application.yml
+0
-1
pom.xml
gemho-business/pom.xml
+26
-0
RegexpConstants.java
.../main/java/com/gemho/common/constant/RegexpConstants.java
+481
-0
pom.xml
gemho-system/pom.xml
+4
-1
pom.xml
pom.xml
+1
-0
No files found.
gemho-admin/src/main/resources/application.yml
View file @
573ab06a
...
...
@@ -93,7 +93,6 @@ mybatis-plus:
configuration
:
map-underscore-to-camel-case
:
true
log-impl
:
org.apache.ibatis.logging.nologging.NoLoggingImpl
config-location
:
classpath:mybatis-config.xml
# PageHelper分页插件
pagehelper
:
...
...
gemho-business/pom.xml
0 → 100644
View file @
573ab06a
<?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>
com.gemho
</groupId>
<artifactId>
gemho
</artifactId>
<version>
3.8.8
</version>
</parent>
<artifactId>
gemho-business
</artifactId>
<properties>
<maven.compiler.source>
17
</maven.compiler.source>
<maven.compiler.target>
17
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>
com.gemho
</groupId>
<artifactId>
gemho-system
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
gemho-common/src/main/java/com/gemho/common/constant/RegexpConstants.java
0 → 100644
View file @
573ab06a
This diff is collapsed.
Click to expand it.
gemho-system/pom.xml
View file @
573ab06a
...
...
@@ -22,7 +22,10 @@
<groupId>
com.gemho
</groupId>
<artifactId>
gemho-common
</artifactId>
</dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-boot-starter
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
pom.xml
View file @
573ab06a
...
...
@@ -228,6 +228,7 @@
<module>
gemho-quartz
</module>
<module>
gemho-generator
</module>
<module>
gemho-common
</module>
<module>
gemho-business
</module>
</modules>
<packaging>
pom
</packaging>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment