|
23 | 23 | <webXmlPath>src/main/resources/web.xml</webXmlPath> |
24 | 24 | </properties> |
25 | 25 | </profile> |
26 | | - <profile> |
27 | | - <id>http4s-jar</id> |
28 | | - <build> |
29 | | - <plugins> |
30 | | - <plugin> |
31 | | - <groupId>org.apache.maven.plugins</groupId> |
32 | | - <artifactId>maven-assembly-plugin</artifactId> |
33 | | - <version>3.6.0</version> |
34 | | - <configuration> |
35 | | - <appendAssemblyId>false</appendAssemblyId> |
36 | | - <finalName>${project.artifactId}-http4s</finalName> |
37 | | - <archive> |
38 | | - <manifest> |
39 | | - <mainClass>bootstrap.http4s.Http4sServer</mainClass> |
40 | | - </manifest> |
41 | | - </archive> |
42 | | - <descriptorRefs> |
43 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
44 | | - </descriptorRefs> |
45 | | - <dependencySets> |
46 | | - <dependencySet> |
47 | | - <outputDirectory>/</outputDirectory> |
48 | | - <unpack>true</unpack> |
49 | | - <scope>runtime</scope> |
50 | | - </dependencySet> |
51 | | - </dependencySets> |
52 | | - <fileSets> |
53 | | - <fileSet> |
54 | | - <directory>${project.build.outputDirectory}</directory> |
55 | | - <outputDirectory>/</outputDirectory> |
56 | | - </fileSet> |
57 | | - </fileSets> |
58 | | - </configuration> |
59 | | - <executions> |
60 | | - <execution> |
61 | | - <id>http4s-fat-jar</id> |
62 | | - <phase>package</phase> |
63 | | - <goals> |
64 | | - <goal>single</goal> |
65 | | - </goals> |
66 | | - </execution> |
67 | | - </executions> |
68 | | - </plugin> |
69 | | - </plugins> |
70 | | - </build> |
71 | | - </profile> |
72 | 26 | </profiles> |
73 | 27 | <pluginRepositories> |
74 | 28 | <pluginRepository> |
|
83 | 37 | <groupId>com.tesobe</groupId> |
84 | 38 | <artifactId>obp-commons</artifactId> |
85 | 39 | </dependency> |
86 | | - <!--embed akka adapter start--> |
| 40 | + <!--embed akka adapter start - COMMENTED OUT FOR PEKKO MIGRATION--> |
| 41 | + <!-- TODO: Find or create Pekko equivalent for adapter-akka-commons |
87 | 42 | <dependency> |
88 | 43 | <groupId>com.github.OpenBankProject.OBP-Adapter-Akka-SpringBoot</groupId> |
89 | 44 | <artifactId>adapter-akka-commons</artifactId> |
|
95 | 50 | </exclusion> |
96 | 51 | </exclusions> |
97 | 52 | </dependency> |
| 53 | + --> |
98 | 54 | <!--embed akka adapter end--> |
99 | 55 | <dependency> |
100 | 56 | <groupId>com.github.everit-org.json-schema</groupId> |
|
288 | 244 | <artifactId>signpost-commonshttp4</artifactId> |
289 | 245 | <version>1.2.1.2</version> |
290 | 246 | </dependency> |
291 | | - <!-- https://mvnrepository.com/artifact/com.typesafe.akka/akka-http-core --> |
| 247 | + <!-- https://mvnrepository.com/artifact/org.apache.pekko/pekko-http-core --> |
292 | 248 | <dependency> |
293 | | - <groupId>com.typesafe.akka</groupId> |
294 | | - <artifactId>akka-http-core_${scala.version}</artifactId> |
295 | | - <version>10.1.6</version> |
| 249 | + <groupId>org.apache.pekko</groupId> |
| 250 | + <artifactId>pekko-http-core_${scala.version}</artifactId> |
| 251 | + <version>1.1.0</version> |
296 | 252 | </dependency> |
297 | 253 | <dependency> |
298 | | - <groupId>com.typesafe.akka</groupId> |
299 | | - <artifactId>akka-actor_${scala.version}</artifactId> |
300 | | - <version>${akka.version}</version> |
| 254 | + <groupId>org.apache.pekko</groupId> |
| 255 | + <artifactId>pekko-actor_${scala.version}</artifactId> |
| 256 | + <version>${pekko.version}</version> |
301 | 257 | </dependency> |
302 | 258 | <dependency> |
303 | | - <groupId>com.typesafe.akka</groupId> |
304 | | - <artifactId>akka-remote_${scala.version}</artifactId> |
305 | | - <version>${akka.version}</version> |
| 259 | + <groupId>org.apache.pekko</groupId> |
| 260 | + <artifactId>pekko-remote_${scala.version}</artifactId> |
| 261 | + <version>${pekko.version}</version> |
306 | 262 | </dependency> |
307 | 263 | <dependency> |
308 | 264 | <groupId>com.sksamuel.avro4s</groupId> |
|
316 | 272 | </dependency> |
317 | 273 | <dependency> |
318 | 274 | <groupId>com.twitter</groupId> |
319 | | - <artifactId>chill-akka_${scala.version}</artifactId> |
320 | | - <version>0.9.1</version> |
| 275 | + <artifactId>chill_${scala.version}</artifactId> |
| 276 | + <version>0.9.3</version> |
321 | 277 | </dependency> |
322 | 278 | <dependency> |
323 | 279 | <groupId>com.twitter</groupId> |
|
337 | 293 | <version>0.9.3</version> |
338 | 294 | </dependency> |
339 | 295 | <dependency> |
340 | | - <groupId>com.typesafe.akka</groupId> |
341 | | - <artifactId>akka-slf4j_${scala.version}</artifactId> |
342 | | - <version>${akka.version}</version> |
| 296 | + <groupId>org.apache.pekko</groupId> |
| 297 | + <artifactId>pekko-slf4j_${scala.version}</artifactId> |
| 298 | + <version>${pekko.version}</version> |
343 | 299 | </dependency> |
344 | 300 | <!-- https://mvnrepository.com/artifact/com.github.dwickern/scala-nameof_2.11 --> |
345 | 301 | <dependency> |
|
0 commit comments