lorem-ipsum-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.thshsh</groupId> <artifactId>lorem-ipsum-generator</artifactId> <version>2.0.0</version> </dependency>
<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>org.thshsh</groupId> <artifactId>lorem-ipsum-generator</artifactId> <version>2.0.0</version> <developers> <developer> <name>The Shoe Shiner</name> <email>theshoeshiner@thshsh.org</email> </developer> </developers> <licenses> <license> <name>APACHE LICENSE, VERSION 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.8</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <optional>true</optional> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>thshsh-snapshots</id> <url>http://www.thshsh.org/nexus/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>thshsh-releases</id> <url>http://www.thshsh.org/nexus/content/repositories/releases/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com/theshoeshiner/lorem-ipsum-generator.git</connection> <url>https://github.com/theshoeshiner/lorem-ipsum-generator</url> <developerConnection>The Shoe Shiner</developerConnection> </scm> <name>Lorem Ipsum Generator</name> <url>https://github.com/theshoeshiner/lorem-ipsum-generator</url> <description>A library for generating random latin text based on the standard "Lorem Ipsum" text.</description> <build> <plugins> <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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.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>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <excludes> <exclude>*.asc</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>