-
-
Notifications
You must be signed in to change notification settings - Fork 759
Expand file tree
/
Copy pathpom.xml
More file actions
122 lines (116 loc) · 4.85 KB
/
Copy pathpom.xml
File metadata and controls
122 lines (116 loc) · 4.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-project</artifactId>
<version>4.0.60-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>org.atmosphere.samples</groupId>
<artifactId>atmosphere-spring-boot-checkpoint-agent</artifactId>
<name>atmosphere-spring-boot-checkpoint-agent</name>
<description>Durable agent execution — @Coordinator + CheckpointStore + HITL pause/resume demo</description>
<properties>
<!-- Self-contained netty pin: covers samples scaffolded standalone against
a released parent POM that may not yet declare netty.version. -->
<netty.version>4.2.15.Final</netty.version>
<maven.deploy.skip>true</maven.deploy.skip>
<atmosphere.starter>atmosphere-spring-boot-starter</atmosphere.starter>
</properties>
<dependencyManagement>
<dependencies>
<!-- netty-bom imported BEFORE spring-boot-dependencies so its
first-wins rule pulls patched netty 4.x for this sample,
overriding Spring Boot's transitively-pinned vulnerable line. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>${atmosphere.starter}</artifactId>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-agent</artifactId>
</dependency>
<!-- atmosphere-a2a is declared optional on modules/agent, so @Agent
classes do NOT register their JSON-RPC A2A handler unless the
sample pulls it in explicitly. LocalAgentTransport dispatches via
the A2A handler; without this dep every coordinator-driven call
falls through to "agent not found" even though the @Agent bean
exists. -->
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-a2a</artifactId>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-ai</artifactId>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-coordinator</artifactId>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-checkpoint</artifactId>
</dependency>
<!-- Durable SQLite-backed CheckpointStore. atmosphere-checkpoint
declares sqlite-jdbc as optional, so the sample pulls it in
explicitly for the default store backend. -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.53.2.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals><goal>repackage</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>