throwable-utility
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.TurquoiseSpace</groupId> <artifactId>throwable-utility</artifactId> <version>0.0.9</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>com.github.TurquoiseSpace</groupId> <artifactId>throwable-utility</artifactId> <version>0.0.9</version> <name>Throwable Utility</name> <description>JSON Friendly Exceptions, Errors and Throwables in Java. Utility to convert Exception or Throwable into JSON. Log the complete Exception or Throwable as a String. Throwable JSON Transformer Module.</description> <url>https://github.com/TurquoiseSpace/throwable-utility</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Prakhar Makhija</name> <email>matcdac@gmail.com</email> <organization>Turquoise Space</organization> <organizationUrl>https://github.com/TurquoiseSpace</organizationUrl> </developer> <developer> <name>Prakhar Makhija</name> <email>prakhar.makhija@ge.com</email> <organization>General Electric</organization> <organizationUrl>https://www.ge.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/TurquoiseSpace/throwable-utility.git</connection> <developerConnection>scm:git:ssh://github.com:TurquoiseSpace/throwable-utility.git</developerConnection> <url>http://github.com/TurquoiseSpace/throwable-utility/tree/master</url> </scm> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <org.projectlombok.lombok.version>1.18.28</org.projectlombok.lombok.version> <com.fasterxml.jackson.core.jackson-databind.version>2.15.1</com.fasterxml.jackson.core.jackson-databind.version> <org.slf4j.log4j-over-slf4j.version>2.0.7</org.slf4j.log4j-over-slf4j.version> <maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version> <maven.source.plugin.version>3.3.0</maven.source.plugin.version> <maven.javadoc.plugin.version>3.5.0</maven.javadoc.plugin.version> <maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version> <nexus.staging.maven.plugin.version>1.6.13</nexus.staging.maven.plugin.version> <maven.release.plugin.version>3.0.0</maven.release.plugin.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${org.projectlombok.lombok.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${com.fasterxml.jackson.core.jackson-databind.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>${org.slf4j.log4j-over-slf4j.version}</version> </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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${org.projectlombok.lombok.version}</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</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>${maven.javadoc.plugin.version}</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>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</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-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </project>