-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
183 lines (166 loc) · 6.75 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?xml version="1.0" encoding="UTF-8"?>
<!-- suppress ALL -->
<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>tech.xigam</groupId>
<artifactId>CCH</artifactId>
<version>1.9.0-SNAPSHOT</version>
<name>Complex Command Handler</name>
<description>A really useful and simple command handler for JDA.</description>
<url>https://github.com/KingRainbow44/Complex-Command-Handler/</url>
<!-- CHANGE LOG -->
<!-- 1.0.2 - Added implementation of deleting commands. -->
<!-- 1.0.3 - Fix an issue with option string arguments. -->
<!-- 1.0.4 - Added DM ephemeral. -->
<!-- 1.1.0 - Added extra options, fixed bugs. -->
<!-- 1.1.1 - Reply chain commands. -->
<!-- 1.2.0 - Update for JDA v5-alpha.5 -->
<!-- 1.3.0 - Trailing prefix-based arguments. -->
<!-- 1.4.0 - Auto-completable arguments. -->
<!-- 1.4.1 - Added command-in-guild check. -->
<!-- 1.4.2 - Add support for other option types. -->
<!-- 1.4.3 - Add support for all channel types. -->
<!-- 1.5.0 - Implement buttons and handle attachments. -->
<!-- 1.6.0 - Implement selection menus. -->
<!-- 1.6.1 - Store the member in callbacks. -->
<!-- 1.6.2 - Additional bug fixes + internal clean-up. -->
<!-- 1.6.3 - Allow setting buttons when editing a callback. -->
<!-- 1.6.4 - Fix a bug with DM commands not being processed. -->
<!-- 1.6.5 - Hotfix for 1.6.4. -->
<!-- 1.6.6 - Add support for JDA v5-alpha.22 & Modal support -->
<!-- 1.6.7 - Add support for JDA v5-beta.10 & formatting changes. -->
<!-- 1.7.0 - [BREAKING] Upgrade to JDA v5-beta.20 & add support for new slash-command features. -->
<!-- 1.7.1 - Add default for reply mentions & add new way to define commands. -->
<!-- 1.7.2 - Add replying with files. -->
<!-- 1.8.0 - [BREAKING] Add support for context-based commands. -->
<!-- 1.9.0 - [BREAKING] Add support for user-installable bots. -->
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>Magix</id>
<name>Kobe Do</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:KingRainbow44/Complex-Command-Handler.git</connection>
<developerConnection>scm:git:ssh://github.com:KingRainbow44/Complex-Command-Handler.git</developerConnection>
<url>https://github.com/KingRainbow44/Complex-Command-Handler/tree/main</url>
</scm>
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.github.freya022</groupId>
<artifactId>JDA</artifactId>
<version>e88cfadcb8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Maven Source Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Surefire Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci-cd</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>