Bladeren bron

first commit,聊天室项目初始化

yang yi 2 maanden geleden
commit
3b7b703989
5 gewijzigde bestanden met toevoegingen van 137 en 0 verwijderingen
  1. 55 0
      .gitignore
  2. 19 0
      chat-gwng/chat-client/pom.xml
  3. 19 0
      chat-gwng/chat-commom/pom.xml
  4. 19 0
      chat-gwng/chat-server/pom.xml
  5. 25 0
      chat-gwng/pom.xml

+ 55 - 0
.gitignore

@@ -0,0 +1,55 @@
+# created by virtualenv automatically
+
+**/.idea
+**/node_modules
+**/.gradle
+**/.mvn
+**/*.iml
+**/*.log
+**/*.rar
+**/*.png
+**/*.jpg
+**/*.xls
+**/*.xlsx
+**/*.zip
+**/*.rar
+**/*.o
+**/*.exe
+**/*.class
+**/out/**
+**/target/**
+**/build/**
+
+/*
+!*.jar
+!*.java
+!*.jsp
+!*.md
+!*.xmind
+!*.drawio
+!*.html
+!*.css
+!*.js
+!*.ts
+!*.xml
+!*.vue
+!*.sql
+!*.json
+!*.ico
+!*.png
+!*.jpg
+!*.svg
+!*.xls
+!*.xlsx
+!*.properties
+!*.txt
+!*.yaml
+!*.c
+!*.cpp
+!*.h
+!*.kt
+!*.kts
+
+!/common
+!/member-service-provider_10000
+!/member-service-consumer

+ 19 - 0
chat-gwng/chat-client/pom.xml

@@ -0,0 +1,19 @@
+<?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">
+    <parent>
+        <artifactId>chat-gwng</artifactId>
+        <groupId>anyi.space</groupId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>chat-client</artifactId>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+    </properties>
+
+</project>

+ 19 - 0
chat-gwng/chat-commom/pom.xml

@@ -0,0 +1,19 @@
+<?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">
+    <parent>
+        <artifactId>chat-gwng</artifactId>
+        <groupId>anyi.space</groupId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>chat-commom</artifactId>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+    </properties>
+
+</project>

+ 19 - 0
chat-gwng/chat-server/pom.xml

@@ -0,0 +1,19 @@
+<?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">
+    <parent>
+        <artifactId>chat-gwng</artifactId>
+        <groupId>anyi.space</groupId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>chat-server</artifactId>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+    </properties>
+
+</project>

+ 25 - 0
chat-gwng/pom.xml

@@ -0,0 +1,25 @@
+<?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>anyi.space</groupId>
+    <artifactId>chat-gwng</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <modules>
+        <module>chat-server</module>
+        <module>chat-client</module>
+        <module>chat-commom</module>
+    </modules>
+    <packaging>pom</packaging>
+    <description>
+        2520601429在广东外语外贸大学南国商学院做的网络聊天室
+    </description>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>