Maven
The Sentry Maven Plugin is an addition to the main Java SDK and offers seamless integration with the Maven build system. It supports the following features:
- Auto-installation of Sentry Java SDK and relevant integrations
- Uploading Source Context
Setup
Install
Using Maven in your application module's pom.xml
add:
Copied
<project>
...
<build>
<plugins>
<plugin>
<groupId>io.sentry</groupId>
<artifactId>sentry-maven-plugin</artifactId>
<version>0.0.5</version>
<!-- Required to allow auto-install of Sentry SDK and Integrations -->
<extensions>true</extensions>
</plugin>
...
</plugins>
...
</build>
...
</project>
Configure
We expose the following configuration values, by adding a <configuration>
section to the the plugin in pom.xml
:
Copied
<project>
...
<build>
<plugins>
<plugin>
<groupId>io.sentry</groupId>
<artifactId>sentry-maven-plugin</artifactId>
<version>0.0.5</version>
<!-- Required to allow auto-install of Sentry SDK and Integrations -->
<extensions>true</extensions>
<configuration>
<!-- for showing output of sentry-cli -->
<debugSentryCli>true</debugSentryCli>
<!-- Disable the plugin -->
<skip>false</skip>
<!-- Disable source-context -->
<skipSourceBundle>false</skipSourceBundle>
<!-- Disable auto-install of SDK and Integrations -->
<skipAutoInstall>false</skipAutoInstall>
</configuration>
<executions>
<execution>
<goals>
<!-- Generates a source bundle and uploads it to Sentry. -->
<!-- This enables source context, allowing you to see your source -->
<!-- code as part of your stack traces in Sentry. -->
<goal>uploadSourceBundle</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
...
</build>
...
</project>
Auto Installation
The plugin automatically adds the Sentry Java SDK as well as available Sentry integrations as dependencies if it detects a library dependency we support. For example, if your
projectRepresents your service in Sentry and allows you to scope events to a distinct application.
has a dependency on graphql-java
the plugin will automatically add sentry-graphql
as an additional dependency.Source Context
See our documentation on Source Context.
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) to suggesting an update ("yeah, this would be better").
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) to suggesting an update ("yeah, this would be better").
- Package:
- maven:io.sentry:sentry
- Version:
- 7.0.0
- Repository:
- https://github.com/getsentry/sentry-java
- API Documentation:
- https://javadoc.io/doc/io.sentry