mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-19 04:55:01 +00:00
* Bump testcontainers.version from 1.15.1 to 1.16.0 Bumps `testcontainers.version` from 1.15.1 to 1.16.0. Updates `testcontainers` from 1.15.1 to 1.16.0 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.15.1...1.16.0) Updates `junit-jupiter` from 1.15.1 to 1.16.0 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.15.1...1.16.0) Updates `mariadb` from 1.15.1 to 1.16.0 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.15.1...1.16.0) Updates `gcloud` from 1.15.1 to 1.16.0 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.15.1...1.16.0) --- updated-dependencies: - dependency-name: org.testcontainers:testcontainers dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.testcontainers:junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.testcontainers:mariadb dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.testcontainers:gcloud dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update Junit to 5.8.0 * Update maven-war-plugin to 3.3.2 * Bump jna to version 5.8.0 * Update maven.resolver.version to 1.7.2 * Update maven-javadoc-plugin to 3.3.1 * Update maven-jxr-plugin to 3.1.1 * Fixing jetty-runner use of maven-dependency-plugin + Don't exclude by "test" (that means exclude all) Include by "compile" instead. * Bump jnr-unixsocket to 0.38.10 * Bump maven.version to 3.8.2 * Bump jna to 5.9.0 * Bump slf4j to 1.7.32 * Bump maven.plugin-tools.version to 3.6.1 * Bump plexus-utils to 3.4.1 * Bump jetty.perf-helper.version to 1.0.7 * Bump jboss.logging.version to 3.4.2.Final * Bump grpc.version to 1.40.1 * Adding versions-maven-plugin config * Bump bnd.version to 5.3.0 * Bump gson.version to 2.8.8 * Bump xmemcached to 2.4.7 * Bump osgi-services-version to 3.10.100 * Bump osgi-util-version to 3.6.0 * Bump conscrypt.version to 2.5.2 * Bump openwebbeans.version to 2.0.23 * Bump maven-artifact-transfer to 0.13.1 * Fix mongo testcontainers setup * Bump maven-checkstyle-plugin to 3.1.2 * Bump jacoco-maven-plugin to 0.8.7 * Fix memcached testcontainer usage Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87 lines
2.5 KiB
XML
87 lines
2.5 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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.memcached</groupId>
|
|
<artifactId>memcached-parent</artifactId>
|
|
<version>9.4.44-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jetty-memcached-sessions</artifactId>
|
|
<name>Jetty :: Memcached :: Sessions</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.xmemcached</groupId>
|
|
<artifactId>xmemcached</artifactId>
|
|
<version>2.4.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-client</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<bundle-symbolic-name>${project.groupId}.session</bundle-symbolic-name>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<profiles>
|
|
<profile>
|
|
<id>memcached</id>
|
|
<activation>
|
|
<property>
|
|
<name>memcached.enabled</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>false</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|