Skip to content

Commit

Permalink
fix: update username and fill maven requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Jasper Lutz Severino <jasperlutzseverino@gmail.com>
  • Loading branch information
lutzseverino committed Aug 2, 2022
1 parent 5d45e49 commit aab256b
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 24 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![java](https://img.shields.io/badge/java-%23ED8B00.svg?style=flat&logo=java&logoColor=white) ![total lines](https://img.shields.io/tokei/lines/github/frequential/discord-books) ![license](https://img.shields.io/github/license/frequential/discord-books)
![java](https://img.shields.io/badge/java-%23ED8B00.svg?style=flat&logo=java&logoColor=white) ![total lines](https://img.shields.io/tokei/lines/github/lutzseverino/discord-books) ![license](https://img.shields.io/github/license/lutzseverino/discord-books)

<img alt="discord-books library showcase" align="right" src="https://user-images.githubusercontent.com/28309837/182421595-664c25ab-b3c5-4843-858a-a248d71a9896.gif" height="450">

Expand Down Expand Up @@ -41,7 +41,7 @@ to the Releases tab to see the latest versions.
### Spins

You can check all available spins on
the [GitHub Packages](https://github.com/frequential?tab=packages&repo_name=discord-books) tab.
the [GitHub Packages](https://github.com/lutzseverino?tab=packages&repo_name=discord-books) tab.

## Features

Expand Down Expand Up @@ -270,6 +270,6 @@ previous step.

## Credits

**All versions**: Idea and execution by [Jasper Lutz Severino](https://github.com/frequential).
**All versions**: Idea and execution by [Jasper Lutz Severino](https://github.com/lutzseverino).
\
**Up to 1.0.0**: General audit and help by [Alberto Mimbrero](https://github.com/mimbrero).
9 changes: 1 addition & 8 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<packaging>jar</packaging>

<name>Discord Books Core</name>
<artifactId>discord-books-core</artifactId>

<properties>
Expand All @@ -25,12 +26,4 @@
<scope>provided</scope>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub frequential Apache Maven Packages</name>
<url>https://maven.pkg.github.com/frequential/discord-books</url>
</repository>
</distributionManagement>
</project>
13 changes: 3 additions & 10 deletions jda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<packaging>jar</packaging>

<name>Discord Books JDA</name>
<artifactId>discord-books-jda</artifactId>

<properties>
Expand All @@ -20,9 +21,9 @@

<dependencies>
<dependency>
<groupId>com.lutzseverino.discordbooks</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>discord-books-core</artifactId>
<version>2.1.3</version>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -41,12 +42,4 @@
<scope>provided</scope>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub frequential Apache Maven Packages</name>
<url>https://maven.pkg.github.com/frequential/discord-books</url>
</repository>
</distributionManagement>
</project>
94 changes: 91 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,91 @@
<packaging>pom</packaging>
<version>2.1.3</version>

<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<name>Discord Books</name>
<description>A lightweight and implementable library that helps you create multipage messages automatically on
Discord.
</description>
<url>https://github.com/lutzseverino/discord-books/</url>

<licenses>
<license>
<name>The GNU Lesser General Public License, Version 3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Jasper Lutz Severino</name>
<email>jasperlutzseverino@gmail.com</email>
<organization>com.lutzseverino</organization>
<organizationUrl>https://github.com/lutzseverino</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/lutzseverino/discord-books.git</connection>
<developerConnection>scm:git:ssh://github.com:lutzseverino/discord-books.git</developerConnection>
<url>http://github.com/lutzseverino/discord-books/tree/master</url>
</scm>

<modules>
<module>core</module>
<module>jda</module>
Expand Down Expand Up @@ -41,10 +126,13 @@
</dependencyManagement>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>github</id>
<name>GitHub frequential Apache Maven Packages</name>
<url>https://maven.pkg.github.com/frequential/discord-books</url>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit aab256b

Please sign in to comment.