Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zgqc
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hufengqin
zgqc
Commits
20a993ae
Commit
20a993ae
authored
Mar 27, 2023
by
hufengqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
88944336
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
268 additions
and
0 deletions
+268
-0
zgqc-bigdata/pom.xml
+62
-0
zgqc-bigdata/src/main/java/com/panda/zgqc/bigdata/ZgqcBigdataApplication.java
+13
-0
zgqc-bigdata/src/main/resources/application.properties
+1
-0
zgqc-bigdata/src/test/java/com/panda/zgqc/bigdata/ZgqcBigdataApplicationTests.java
+13
-0
zgqc-market/pom.xml
+62
-0
zgqc-market/src/main/java/com/panda/zgqc/market/ZgqcMarketApplication.java
+13
-0
zgqc-market/src/main/resources/application.properties
+1
-0
zgqc-market/src/test/java/com/panda/zgqc/market/ZgqcMarketApplicationTests.java
+13
-0
zgqc-platform/pom.xml
+62
-0
zgqc-platform/src/main/java/com/zgqc/platform/ZgqcPlatformApplication.java
+13
-0
zgqc-platform/src/main/resources/application.yml
+1
-0
zgqc-platform/src/test/java/com/zgqc/platform/ZgqcPlatformApplicationTests.java
+14
-0
No files found.
zgqc-bigdata/pom.xml
0 → 100644
View file @
20a993ae
<?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>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.7.6
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.panda.zgqc
</groupId>
<artifactId>
zgqc-bigdata
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
zgqc-bigdata
</name>
<description>
大数据平台
</description>
<properties>
<java.version>
11
</java.version>
<spring-cloud.version>
2021.0.6
</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>
com.panda.zgqc
</groupId>
<artifactId>
zgqc-common
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-dependencies
</artifactId>
<version>
${spring-cloud.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
zgqc-bigdata/src/main/java/com/panda/zgqc/bigdata/ZgqcBigdataApplication.java
0 → 100644
View file @
20a993ae
package
com
.
panda
.
zgqc
.
bigdata
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
ZgqcBigdataApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ZgqcBigdataApplication
.
class
,
args
);
}
}
zgqc-bigdata/src/main/resources/application.properties
0 → 100644
View file @
20a993ae
zgqc-bigdata/src/test/java/com/panda/zgqc/bigdata/ZgqcBigdataApplicationTests.java
0 → 100644
View file @
20a993ae
package
com
.
panda
.
zgqc
.
bigdata
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
ZgqcBigdataApplicationTests
{
@Test
void
contextLoads
()
{
}
}
zgqc-market/pom.xml
0 → 100644
View file @
20a993ae
<?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>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.7.6
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.panda.zgqc
</groupId>
<artifactId>
zgqc-market
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
zgqc-market
</name>
<description>
市场主体
</description>
<properties>
<java.version>
11
</java.version>
<spring-cloud.version>
2022.0.1
</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>
com.panda.zgqc
</groupId>
<artifactId>
zgqc-common
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-dependencies
</artifactId>
<version>
${spring-cloud.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
zgqc-market/src/main/java/com/panda/zgqc/market/ZgqcMarketApplication.java
0 → 100644
View file @
20a993ae
package
com
.
panda
.
zgqc
.
market
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
ZgqcMarketApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ZgqcMarketApplication
.
class
,
args
);
}
}
zgqc-market/src/main/resources/application.properties
0 → 100644
View file @
20a993ae
zgqc-market/src/test/java/com/panda/zgqc/market/ZgqcMarketApplicationTests.java
0 → 100644
View file @
20a993ae
package
com
.
panda
.
zgqc
.
market
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
ZgqcMarketApplicationTests
{
@Test
void
contextLoads
()
{
}
}
zgqc-platform/pom.xml
0 → 100644
View file @
20a993ae
<?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>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.7.6
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.zgqc
</groupId>
<artifactId>
zgqc-platform
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
zgqc-platform
</name>
<description>
平台中心
</description>
<properties>
<java.version>
11
</java.version>
<spring-cloud.version>
2022.0.1
</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>
com.panda.zgqc
</groupId>
<artifactId>
zgqc-common
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-dependencies
</artifactId>
<version>
${spring-cloud.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
zgqc-platform/src/main/java/com/zgqc/platform/ZgqcPlatformApplication.java
0 → 100644
View file @
20a993ae
package
com
.
zgqc
.
platform
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
ZgqcPlatformApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ZgqcPlatformApplication
.
class
,
args
);
}
}
zgqc-platform/src/main/resources/application.yml
0 → 100644
View file @
20a993ae
zgqc-platform/src/test/java/com/zgqc/platform/ZgqcPlatformApplicationTests.java
0 → 100644
View file @
20a993ae
package
com
.
zgqc
.
platform
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
ZgqcPlatformApplicationTests
{
@Test
void
contextLoads
()
{
}
}
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