sentry-appengine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.sentry</groupId> <artifactId>sentry-appengine</artifactId> <version>1.7.30</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>io.sentry</groupId> <artifactId>sentry-all</artifactId> <version>1.7.30</version> </parent> <artifactId>sentry-appengine</artifactId> <packaging>jar</packaging> <name>Sentry-Java for Google AppEngine</name> <description>Sentry module allowing to use GoogleApp Engine and its task queueing system.</description> <properties> <appengine-api.version>1.9.49</appengine-api.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sentry</artifactId> </dependency> <dependency> <groupId>com.google.appengine</groupId> <artifactId>appengine-api-1.0-sdk</artifactId> <version>${appengine-api.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <appengine.spi.useThreadContextClassLoader>true</appengine.spi.useThreadContextClassLoader> </systemProperties> </configuration> </plugin> </plugins> </build> </project>