-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
96 lines (91 loc) · 3.24 KB
/
pom.xml
File metadata and controls
96 lines (91 loc) · 3.24 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>java-crowd-control</artifactId>
<groupId>dev.qixils.crowdcontrol</groupId>
<version>3.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>crowd-control-sender</artifactId>
<name>Crowd Control Sender</name>
<description>Library for sending effect requests to a receiving game server or clients
</description>
<url>https://github.com/qixils/java-crowd-control</url>
<scm>
<connection>scm:git:https://github.com/qixils/java-crowd-control</connection>
<developerConnection>scm:git:https://github.com/qixils/java-crowd-control
</developerConnection>
<url>https://github.com/qixils/java-crowd-control.git</url>
<tag>v3.9.1</tag>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/qixils/java-crowd-control/blob/master/LICENSE</url>
<distribution>repo</distribution>
<comments>A short and simple permissive license</comments>
</license>
</licenses>
<developers>
<developer>
<id>qixils</id>
<name>Lexi Larkin</name>
<email>lexi@qixils.dev</email>
<url>https://qixils.dev/</url>
<roles>
<role>developer</role>
</roles>
<timezone>America/New_York</timezone>
<properties>
<picUrl>https://i.qixils.dev/avatar.png</picUrl>
<twitter>lexikiq</twitter>
<github>qixils</github>
<gitlab>lexikiq</gitlab>
</properties>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>dev.qixils.crowdcontrol</groupId>
<artifactId>crowd-control-pojos</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.6.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>publish</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>