Skip to content

Commit

Permalink
Add plugins and info
Browse files Browse the repository at this point in the history
  • Loading branch information
trickl committed Mar 30, 2019
1 parent ffe0aca commit f1ef09f
Showing 1 changed file with 73 additions and 10 deletions.
83 changes: 73 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,24 @@
Utility functions for dealing with natural language
</description>
<modelVersion>4.0.0</modelVersion>
<groupId>com.trickl</groupId>
<groupId>com.github.trickl</groupId>
<artifactId>language</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<developers>
<developer>
<id>trickl</id>
<name>Tim Gee</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub Issue Tracker</system>
<url>https://github.com/trickl/language/issues</url>
Expand Down Expand Up @@ -52,6 +66,57 @@
<debug>true</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</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>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</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>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down Expand Up @@ -145,15 +210,13 @@
</profile>
</profiles>
<distributionManagement>
<repository>
<id>trickl-release-repository</id>
<name>Trickl Release Repository</name>
<url>${deploy.releases.url}</url>
</repository>
<snapshotRepository>
<id>trickl-snapshot-repository</id>
<name>Trickl Snapshot Repository</name>
<url>${deploy.snapshots.url}</url>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit f1ef09f

Please sign in to comment.