Skip to content

Commit

Permalink
release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaiR committed Nov 19, 2018
1 parent 5c9d69e commit 51ddbda
Show file tree
Hide file tree
Showing 3 changed files with 124 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Exception Mapper library for jersey (server)
this plugins contains bunch of custom exceptions and *`javax.ws.rs.ext.Provider`*s for handling them for using in creating
this plugins contains bunch of custom exceptions and **_`javax.ws.rs.ext.Provider`_**s for handling them for using in creating
REST APIs with `jersey` implementation of jax-rs.

### What problems will this library solve?
Expand Down
120 changes: 119 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@
<groupId>com.github.metair.jersey</groupId>
<artifactId>exception-mapper</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>custom exceptions and exception mappers for jersey</name>
<url>https://github.com/MetaiR/exception-mapper</url>
<description>this library will add some custom exceptions and providers to handle those exceptions to make it easier for both client and server side developers to find out what went wrong</description>

<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/MetaiR/exception-mapper/blob/master/LICENSE</url>
</license>
</licenses>

<developers>
<developer>
<name>Seyed Ali Roshan</name>
<email>[email protected]</email>
<organization>com.github.metair</organization>
<organizationUrl>https://github.com/MetaiR/</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/metair/exception-mapper.git</connection>
<developerConnection>scm:git:ssh://github.com:metair/exception-mapper.git</developerConnection>
<url>https://github.com/metair/exception-mapper</url>
</scm>

<properties>
<glassfish-version>2.27</glassfish-version>
Expand All @@ -28,17 +55,108 @@
</dependency>
</dependencies>

<distributionManagement>
<snapshotRepository>
<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>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<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://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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>3.0.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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<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://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 51ddbda

Please sign in to comment.