morse-code-translator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.SethEpic</groupId> <artifactId>morse-code-translator</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <name>morse-code-translator</name> <description>A morse code translator written in java 15.</description> <groupId>io.github.SethEpic</groupId> <artifactId>morse-code-translator</artifactId> <packaging>jar</packaging> <version>1.0.5</version> <url>https://github.com/SethEpic/morse-code-translator</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>15</maven.compiler.source> <maven.compiler.target>15</maven.compiler.target> </properties> <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/content/repositories/releases</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.8.0-M1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>15</source> <target>15</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <stagingProfileId>1c44d16c9dd1e7</stagingProfileId> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <configuration> <repositoryId>ossrh</repositoryId> <!-- 1495CA67DB214F4C8D48373A2AD7752693EC608A--> <url>https://s01.oss.sonatype.org/</url> <!-- This is necessary for gpg to not try to use the pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <show>public</show> <excludePackageNames>com.epic.morse.service.languages:com.epic.morse.service:com.epic.morse.exception</excludePackageNames> <failOnError>false</failOnError> <failOnWarnings>false</failOnWarnings> <nohelp>true</nohelp> <nocomment>true</nocomment> </configuration> </plugin> </plugins> </build> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Seth</name> <email>SethEpicDeveloper@gmail.com</email> <url>https://github.com/SethEpic/</url> <roles> <role>developer</role> </roles> <timezone>America/Chicago</timezone> <organization>N/A</organization> <organizationUrl>N/A</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/SethEpic/morse-code-translator.git</connection> <developerConnection>scm:git:ssh://github.com:SethEpic/morse-code-translator.git</developerConnection> <url>http://github.com/SethEpic/morse-code-translator/tree/main</url> </scm> </project>