This commit is contained in:
SAM2O2O 2019-08-01 23:02:29 +08:00
parent fc06c957c8
commit bd8baea8f5
398 changed files with 194 additions and 236 deletions

1
.gitignore vendored
View File

@ -11,3 +11,4 @@ stdout.log
openzaly-server.jar
site-file/
site-logs/
openzaly-server.config

View File

@ -1,45 +0,0 @@
<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>
<parent>
<groupId>com.windchat.im</groupId>
<artifactId>windchat</artifactId>
<version>0.0.1</version>
</parent>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-business</artifactId>
<version>0.0.1-RELEASE</version>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.akaxin.common</groupId>
<artifactId>openzaly-common</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.proto</groupId>
<artifactId>openzaly-protobuf</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-storage</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-message</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
</dependencies>
</project>

View File

@ -1,59 +0,0 @@
<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>
<parent>
<groupId>com.windchat.im</groupId>
<artifactId>windchat</artifactId>
<version>0.0.1</version>
</parent>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-message</artifactId>
<version>0.0.1-RELEASE</version>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.akaxin.common</groupId>
<artifactId>openzaly-common</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.proto</groupId>
<artifactId>openzaly-protobuf</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-storage</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<!-- <version>4.3.5</version> -->
</dependency>
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
</project>

View File

@ -1,5 +0,0 @@
package com.windchat.im.message.web.bean;
public class WebGroupTextBean {
}

View File

@ -1,5 +0,0 @@
package com.windchat.im.message.web.bean;
public class WebResponseBean {
}

View File

@ -1,5 +0,0 @@
package com.windchat.im.message.web.bean;
public class WebU2TextBean {
}

16
pom.xml
View File

@ -12,14 +12,14 @@
</organization>
<modules>
<module>openzaly-boot</module>
<module>openzaly-connector</module>
<module>openzaly-business</module>
<module>openzaly-message</module>
<module>openzaly-protobuf</module>
<module>openzaly-storage</module>
<module>openzaly-common</module>
<module>openzaly-admin</module>
<module>windchat-boot</module>
<module>windchat-connector</module>
<module>windchat-business</module>
<module>windchat-message</module>
<module>windchat-protobuf</module>
<module>windchat-storage</module>
<module>windchat-common</module>
<module>windchat-admin</module>
</modules>
<properties>

View File

@ -7,11 +7,10 @@
<artifactId>windchat</artifactId>
<version>0.0.1</version>
</parent>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-admin</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-admin</artifactId>
<version>0.0.1-RELEASE</version>
<packaging>jar</packaging>
<name>openzaly-admin</name>
<dependencies>
<dependency>

View File

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -76,14 +76,14 @@
<dependencies>
<!-- 启动Netty服务器依赖包 -->
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-connector</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-connector</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<!-- 启动后台管理依赖包 -->
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-admin</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-admin</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<!--命令行工具-->

View File

@ -6,37 +6,32 @@
<artifactId>windchat</artifactId>
<version>0.0.1</version>
</parent>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-connector</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-business</artifactId>
<version>0.0.1-RELEASE</version>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.akaxin.common</groupId>
<artifactId>openzaly-common</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-storage</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-message</artifactId>
<groupId>com.windchat.im</groupId>
<artifactId>windchat-message</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-business</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<dependency>
<groupId>com.akaxin.site</groupId>
<artifactId>openzaly-storage</artifactId>
<groupId>com.windchat.proto</groupId>
<artifactId>windchat-protobuf</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>

Some files were not shown because too many files have changed in this diff Show More