2019-06-24 11:42:39 -04:00
|
|
|
<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">
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-core</artifactId>
|
|
|
|
<version>12.0.0-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-session</artifactId>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>Core :: Sessions </name>
|
2022-05-03 09:50:54 -04:00
|
|
|
<description>The common jetty session implementation</description>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
2022-05-03 09:50:54 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.session</bundle-symbolic-name>
|
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.session.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-11-17 10:12:50 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2022-05-24 06:33:32 -04:00
|
|
|
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.session=org.eclipse.jetty.logging --add-opens org.eclipse.jetty.session/org.eclipse.jetty.session=ALL-UNNAMED
|
2020-11-17 10:12:50 -05:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-05-03 12:28:39 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven.jar.plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-server</artifactId>
|
2020-11-02 07:30:40 -05:00
|
|
|
</dependency>
|
2011-01-06 13:04:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
2011-01-28 13:58:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-11-17 23:52:32 -05:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2018-11-22 06:37:35 -05:00
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
2015-11-17 23:52:32 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2019-06-24 11:42:39 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-02-03 03:45:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2023-02-03 04:07:10 -05:00
|
|
|
<artifactId>testcontainers</artifactId>
|
2023-02-03 03:45:29 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-02-02 19:49:44 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>mariadb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|