Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fulixin
dsk-operate-sys-cscec
Commits
14dd60c8
Commit
14dd60c8
authored
Nov 16, 2023
by
tanyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
集成goview 大屏设计系统
parent
dbe4940a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
135 additions
and
1 deletion
+135
-1
pom.xml
dsk-admin/pom.xml
+6
-0
application.yml
dsk-admin/src/main/resources/application.yml
+23
-1
pom.xml
dsk-module/dsk-biz-bi/pom.xml
+99
-0
pom.xml
dsk-module/pom.xml
+1
-0
pom.xml
pom.xml
+6
-0
No files found.
dsk-admin/pom.xml
View file @
14dd60c8
...
...
@@ -61,6 +61,11 @@
<artifactId>
dsk-biz-api
</artifactId>
</dependency>
<dependency>
<groupId>
com.dsk
</groupId>
<artifactId>
dsk-biz-bi
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
...
...
@@ -84,6 +89,7 @@
<!-- <version>${与你的agent探针版本保持一致}</version>-->
<!-- </dependency>-->
</dependencies>
<build>
...
...
dsk-admin/src/main/resources/application.yml
View file @
14dd60c8
...
...
@@ -140,7 +140,7 @@ security:
-
/*/api-docs
-
/*/api-docs/**
# actuator 监控配置
-
/a
ctuator
-
/a
pi/**
-
/actuator/**
...
...
@@ -300,3 +300,25 @@ management:
show-details
:
ALWAYS
logfile
:
external-file
:
./logs/sys-console.log
gv
:
img-path
:
D:\dsk\dsk-operate-sys\
#spring:
# datasource:
# type: com.alibaba.druid.pool.DruidDataSource
# druid:
# driver-class-name: com.mysql.cj.jdbc.Driver
# username: ${MYSQL_USER:root}
# password: ${MYSQL_PWD:root}
# url: jdbc:mysql://${MYSQL_HOST:pigx-mysql}:${MYSQL_PORT:3306}/${MYSQL_DB:pigxx_report}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&allowMultiQueries=true&allowPublicKeyRetrieval=true
# jpa:
# database-platform:
# org.hibernate.dialect.MySQL8Dialectsecurity:
# oauth2:
# client:
# ignore-urls:
# - /
# - /api/project/getData
# - /static/**
# - /api/project/get-file/*
# # 文件上传路径
dsk-module/dsk-biz-bi/pom.xml
0 → 100644
View file @
14dd60c8
<?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>
<artifactId>
dsk-module
</artifactId>
<groupId>
com.dsk
</groupId>
<version>
4.8.0
</version>
</parent>
<groupId>
com.dsk
</groupId>
<artifactId>
dsk-biz-bi
</artifactId>
<name>
dsk-biz-bi
</name>
<description>
BI数字大屏
</description>
<properties>
<java.version>
1.8
</java.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.dsk
</groupId>
<artifactId>
dsk-common
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-validation
</artifactId>
</dependency>
<!-- ORM -->
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-boot-starter
</artifactId>
<version>
${mybatis-plus.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
</dependency>
<!-- hutool-core -->
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-core
</artifactId>
</dependency>
<!-- hutool-core -->
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-json
</artifactId>
</dependency>
<!-- hutool-http -->
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-http
</artifactId>
</dependency>
<!-- hutool-extra -->
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-extra
</artifactId>
</dependency>
<!--数据库-->
<dependency>
<groupId>
com.h2database
</groupId>
<artifactId>
h2
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-thymeleaf
</artifactId>
</dependency>
</dependencies>
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- <configuration>-->
<!-- <image>-->
<!-- <builder>paketobuildpacks/builder-jammy-base:latest</builder>-->
<!-- </image>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
</project>
dsk-module/pom.xml
View file @
14dd60c8
...
...
@@ -22,6 +22,7 @@
<modules>
<module>
dsk-biz-api
</module>
<module>
dsk-biz-bi
</module>
</modules>
<build>
...
...
pom.xml
View file @
14dd60c8
...
...
@@ -324,6 +324,12 @@
<version>
${dsk-operate-sys.version}
</version>
</dependency>
<dependency>
<groupId>
com.dsk
</groupId>
<artifactId>
dsk-biz-bi
</artifactId>
<version>
${dsk-operate-sys.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
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