Skip to content

Commit fde91b7

Browse files
committed
Hopefully get the lib on maven central ?
1 parent 64ce4c1 commit fde91b7

File tree

1 file changed

+58
-2
lines changed

1 file changed

+58
-2
lines changed

pom.xml

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,72 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.freya02</groupId>
7+
<groupId>io.github.freya022</groupId>
88
<artifactId>BotCommands</artifactId>
9-
<version>1.4.6</version>
9+
<version>1.5.0</version>
10+
11+
<packaging>jar</packaging>
12+
<name>BotCommands</name>
13+
<description>A framework aiming at simplifying Discord bots using the JDA library</description>
14+
<url>https://github.com/freya022/BotCommands</url>
15+
16+
<developers>
17+
<developer>
18+
<name>freya022</name>
19+
<email>[email protected]</email>
20+
<organization>com.freya02</organization>
21+
<organizationUrl>https://github.com/freya022</organizationUrl>
22+
</developer>
23+
</developers>
24+
25+
<scm>
26+
<connection>scm:git:git://github.com/freya022/BotCommands.git</connection>
27+
<developerConnection>scm:git:ssh://github.com:freya022/BotCommands.git</developerConnection>
28+
<url>http://github.com/freya022/BotCommands</url>
29+
</scm>
1030

1131
<properties>
1232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1333
</properties>
1434

35+
<distributionManagement>
36+
<snapshotRepository>
37+
<id>ossrh</id>
38+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
39+
</snapshotRepository>
40+
<repository>
41+
<id>ossrh</id>
42+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
43+
</repository>
44+
</distributionManagement>
45+
1546
<build>
1647
<plugins>
48+
<plugin>
49+
<groupId>org.sonatype.plugins</groupId>
50+
<artifactId>nexus-staging-maven-plugin</artifactId>
51+
<version>1.6.7</version>
52+
<extensions>true</extensions>
53+
<configuration>
54+
<serverId>ossrh</serverId>
55+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
56+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-gpg-plugin</artifactId>
62+
<version>1.5</version>
63+
<executions>
64+
<execution>
65+
<id>sign-artifacts</id>
66+
<phase>verify</phase>
67+
<goals>
68+
<goal>sign</goal>
69+
</goals>
70+
</execution>
71+
</executions>
72+
</plugin>
1773
<plugin>
1874
<groupId>org.apache.maven.plugins</groupId>
1975
<artifactId>maven-compiler-plugin</artifactId>

0 commit comments

Comments
 (0)