mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-19 06:48:06 +01:00
- aws.sdk2: 2.29.7 - braintree: 3.37.0 - commons-csv: 1.12.0 - commons-io: 2.17.0 - dropwizard: 3.0.10 - firebase-admin: 9.4.1 - google-androidpublisher: v3-rev20241016-2.0.0 - google-cloud-libraries: 26.50.0 - jackson: 2.18.1 - junit-pioneer: 2.23.0 - libphonenumber: 8.13.49 - micrometer: 1.13.6 - reactor: 2023.0.11 - storekit: 3.2.0 - exec-maven-plugin: 3.4.1 - jib-maven-plugin: 3.4.4 - maven-deploy-plugin: 3.1.3 - maven-install-plugin: 3.1.3 - maven-surefire-plugin: 3.5.2 - maven-failsafe-plugin: 3.5.2 - swagger-maven-plugin: 2.22.25
61 lines
1.9 KiB
XML
61 lines
1.9 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>TextSecureServer</artifactId>
|
|
<groupId>org.whispersystems.textsecure</groupId>
|
|
<version>JGITVER</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>integration-tests</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.whispersystems.textsecure</groupId>
|
|
<artifactId>service</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>dynamodb</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<configuration>
|
|
<additionalClasspathElements>
|
|
<additionalClasspathElement>${project.basedir}/.libs/software.amazon.awssdk-sso.jar</additionalClasspathElement>
|
|
</additionalClasspathElements>
|
|
<includes>
|
|
<include>**/*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.google.cloud.tools</groupId>
|
|
<artifactId>jib-maven-plugin</artifactId>
|
|
<configuration>
|
|
<!-- we don't want jib to execute on this module -->
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|