supermarket

main
liuzhehao 2023-11-17 08:24:18 +08:00
parent bb5b7f4d99
commit 83c2a654a6
5 changed files with 149 additions and 0 deletions

28
compiler.xml 100644
View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="supermarket-auth" />
<module name="supermarket-models" />
<module name="supermarket-common" />
<module name="supermarket-gateway" />
<module name="lzh-merch" />
<module name="lzh-system" />
</profile>
</annotationProcessing>
</component>
<component name="JavacSettings">
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
<module name="lzh-merch" options="-parameters" />
<module name="lzh-system" options="-parameters" />
<module name="supermarket-auth" options="-parameters" />
<module name="supermarket-common" options="-parameters" />
<module name="supermarket-gateway" options="-parameters" />
<module name="supermarket-models" options="-parameters" />
</option>
</component>
</project>

18
encodings.xml 100644
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-auth/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-auth/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-common/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-common/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-gateway/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-gateway/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-models/lzh-merch/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-models/lzh-system/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-models/lzh-system/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-models/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/supermarket-models/src/main/resources" charset="UTF-8" />
</component>
</project>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="https://repo.maven.apache.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
</component>
</project>

14
misc.xml 100644
View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

69
pom.xml 100644
View File

@ -0,0 +1,69 @@
<?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>
<groupId>org.lzh</groupId>
<artifactId>supermarket</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>supermarket-auth</module>
<module>supermarket-common</module>
<module>supermarket-gateway</module>
<module>supermarket-models</module>
<module>supermarket-models/lzh-system</module>
<module>supermarket-models/lzh-merch</module>
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- 规定SpringBoot版本 -->
<!-- 父级pom文件 主要用于规定项目依赖的各个版本,用于进行项目版本约束 -->
<parent>
<artifactId>spring-boot-starter-parent</artifactId>
<groupId>org.springframework.boot</groupId>
<version>2.6.2</version>
<relativePath/>
</parent>
<!-- 依赖声明 -->
<dependencyManagement>
<dependencies>
<!-- SpringCloud 微服务 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- SpringCloud Alibaba 微服务 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2021.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Alibaba Nacos 配置 -->
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>2.0.4</version>
</dependency>
<!-- 公共模块 -->
<dependency>
<groupId>org.lzh</groupId>
<artifactId>supermarket-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>