|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 |
| - <groupId>com.freya02</groupId> |
| 7 | + <groupId>io.github.freya022</groupId> |
8 | 8 | <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 | + |
| 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> |
10 | 30 |
|
11 | 31 | <properties>
|
12 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 | 33 | </properties>
|
14 | 34 |
|
| 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 | + |
15 | 46 | <build>
|
16 | 47 | <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> |
17 | 73 | <plugin>
|
18 | 74 | <groupId>org.apache.maven.plugins</groupId>
|
19 | 75 | <artifactId>maven-compiler-plugin</artifactId>
|
|
0 commit comments