Skip to content

Commit b32a1f9

Browse files
committed
re-org projects
1 parent 3bce4cc commit b32a1f9

File tree

87 files changed

+52
-31
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+52
-31
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ build/
4343
.env
4444
.evn.local
4545
.env
46-
susu-portal/
46+
fluent-apps/susu-portal/

components/fluent-quickdao/src/test/resources/config/db.setting

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## db.setting文件
22

3-
url = jdbc:postgresql://127.0.0.1:7432/test_hub?currentSchema=demo
3+
url = jdbc:postgresql://127.0.0.1:7432/workspace?schema=qa
44
user = postgres
5-
pass = changeit
5+
pass = postgres
66

77
## 可选配置
88
# 是否在日志中显示执行的SQL

fluent-apps/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>io.fluentqa</groupId>
8+
<artifactId>qworkspace</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>fluent-apps</artifactId>
13+
<packaging>pom</packaging>
14+
15+
<properties>
16+
<maven.compiler.source>17</maven.compiler.source>
17+
<maven.compiler.target>17</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
</properties>
20+
21+
</project>
File renamed without changes.

qaserver/pom.xml renamed to fluent-apps/qaserver/pom.xml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.fluentqa</groupId>
8-
<artifactId>qworkspace</artifactId>
8+
<artifactId>fluent-apps</artifactId>
99
<version>1.0-SNAPSHOT</version>
1010
</parent>
1111

@@ -42,10 +42,10 @@
4242
<artifactId>erupt-web</artifactId>
4343
<version>${erupt.version}</version>
4444
<exclusions>
45-
<exclusion>
46-
<groupId>org.springframework.boot</groupId>
47-
<artifactId>spring-boot-starter-tomcat</artifactId>
48-
</exclusion>
45+
<exclusion>
46+
<groupId>org.springframework.boot</groupId>
47+
<artifactId>spring-boot-starter-tomcat</artifactId>
48+
</exclusion>
4949
</exclusions>
5050
</dependency>
5151
<dependency>
@@ -111,13 +111,22 @@
111111
<version>1.0-SNAPSHOT</version>
112112
</dependency>
113113
<!-- <dependency>-->
114-
<!-- <groupId>io.hypersistence</groupId>-->
115-
<!-- <artifactId>hypersistence-utils-hibernate-62</artifactId>-->
116-
<!-- <version>3.6.0</version>-->
117-
<!-- </dependency>-->
114+
<!-- <groupId>io.hypersistence</groupId>-->
115+
<!-- <artifactId>hypersistence-utils-hibernate-62</artifactId>-->
116+
<!-- <version>3.6.0</version>-->
117+
<!-- </dependency>-->
118118
</dependencies>
119119
<build>
120120
<plugins>
121+
<plugin>
122+
<artifactId>maven-compiler-plugin</artifactId>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<version>3.11.0</version>
125+
<configuration>
126+
<source>17</source>
127+
<target>17</target>
128+
</configuration>
129+
</plugin>
121130
<plugin>
122131
<groupId>org.springframework.boot</groupId>
123132
<artifactId>spring-boot-maven-plugin</artifactId>

0 commit comments

Comments
 (0)