-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
118 lines (108 loc) · 3.77 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<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>io.github.congcoi123</groupId>
<artifactId>tenio-examples</artifactId>
<version>0.6.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>
TenIO is a java NIO (Non-blocking I/O) based server specifically designed for multiplayer games.
It supports UDP and TCP transports which are handled by Netty for high-speed network transmission.
It uses MsgPack for compressing data so that can be transferred quickly through the network.
This framework can help you quickly create a game server or integrate it into your system.
This project contains a collection of examples for manipulating the framework that you may find helpful.
</description>
<url>https://github.com/congcoi123/tenio</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/congcoi123/tenio-examples/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<name>Kong</name>
<email>congcoi123@gmail.com</email>
<organization>Kong</organization>
<organizationUrl>https://congcoi123.dev</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.release>17</jdk.release>
<jdk.vendor>oracle</jdk.vendor>
<io.github.congcoi123.tenio.core.version>0.6.1</io.github.congcoi123.tenio.core.version>
<io.github.congcoi123.tenio.engine.version>0.6.1</io.github.congcoi123.tenio.engine.version>
<org.apache.commons.version>3.17.0</org.apache.commons.version>
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>io.github.congcoi123</groupId>
<artifactId>tenio-core</artifactId>
<version>${io.github.congcoi123.tenio.core.version}</version>
</dependency>
<dependency>
<groupId>io.github.congcoi123</groupId>
<artifactId>tenio-engine</artifactId>
<version>${io.github.congcoi123.tenio.engine.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${org.apache.commons.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testSourceDirectory>src/test/java</testSourceDirectory>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
<!-- change your target built main class here -->
com.tenio.example.example1.TestServerLogin
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>