File tree Expand file tree Collapse file tree 4 files changed +48
-39
lines changed Expand file tree Collapse file tree 4 files changed +48
-39
lines changed Original file line number Diff line number Diff line change 19
19
<groupId >org.scala-lang</groupId >
20
20
<artifactId >scala3-library_3</artifactId >
21
21
</dependency >
22
- <dependency >
23
- <groupId >org.scalatest</groupId >
24
- <artifactId >scalatest_3</artifactId >
25
- </dependency >
26
22
<dependency >
27
23
<groupId >org.typelevel</groupId >
28
24
<artifactId >cats-effect_3</artifactId >
29
- <version >3.5.4</version > <!-- Use the latest version -->
25
+ <version >3.5.4</version >
30
26
</dependency >
31
27
<dependency >
32
28
<groupId >org.http4s</groupId >
Original file line number Diff line number Diff line change 13
13
14
14
<artifactId >hello-world</artifactId >
15
15
16
-
17
16
<dependencies >
18
17
<dependency >
19
18
<groupId >org.scala-lang</groupId >
29
28
</dependencies >
30
29
31
30
<build >
32
- <sourceDirectory >src/main/scala</sourceDirectory >
33
- <testSourceDirectory >src/tests/scala</testSourceDirectory >
34
31
<plugins >
35
- <plugin >
36
- <groupId >net.alchim31.maven</groupId >
37
- <artifactId >scala-maven-plugin</artifactId >
38
- <version >4.8.1</version >
39
- <configuration >
40
- <recompileMode >incremental</recompileMode >
41
- <scalaVersion >${scala.version} </scalaVersion >
42
- <javacArgs >
43
- <javacArg >-Xlint:unchecked</javacArg >
44
- <javacArg >-Xlint:deprecation</javacArg >
45
- </javacArgs >
46
- </configuration >
47
- <executions >
48
- <execution >
49
- <goals >
50
- <goal >compile</goal >
51
- <goal >testCompile</goal >
52
- </goals >
53
- </execution >
54
- </executions >
55
- </plugin >
56
32
<plugin >
57
33
<groupId >org.scalatest</groupId >
58
34
<artifactId >scalatest-maven-plugin</artifactId >
59
- <version >2.2.0</version >
60
- <executions >
61
- <execution >
62
- <goals >
63
- <goal >test</goal >
64
- </goals >
65
- </execution >
66
- </executions >
67
- </plugin >
35
+ </plugin >
68
36
</plugins >
69
37
</build >
38
+
70
39
</project >
File renamed without changes.
Original file line number Diff line number Diff line change 25
25
<groupId >org.scalatest</groupId >
26
26
<artifactId >scalatest_3</artifactId >
27
27
<version >3.2.18</version >
28
- <scope >test</scope >
29
28
</dependency >
30
29
</dependencies >
31
30
</dependencyManagement >
34
33
<module >hello-world</module >
35
34
<module >hello-rest</module >
36
35
</modules >
36
+
37
+ <build >
38
+ <sourceDirectory >src/main/scala</sourceDirectory >
39
+ <testSourceDirectory >src/test/scala</testSourceDirectory >
40
+ <pluginManagement >
41
+ <plugins >
42
+ <plugin >
43
+ <groupId >org.scalatest</groupId >
44
+ <artifactId >scalatest-maven-plugin</artifactId >
45
+ <version >2.2.0</version >
46
+ <executions >
47
+ <execution >
48
+ <goals >
49
+ <goal >test</goal >
50
+ </goals >
51
+ </execution >
52
+ </executions >
53
+ </plugin >
54
+ </plugins >
55
+ </pluginManagement >
56
+ <plugins >
57
+ <plugin >
58
+ <groupId >net.alchim31.maven</groupId >
59
+ <artifactId >scala-maven-plugin</artifactId >
60
+ <version >4.8.1</version >
61
+ <configuration >
62
+ <recompileMode >incremental</recompileMode >
63
+ <scalaVersion >${scala.version} </scalaVersion >
64
+ <javacArgs >
65
+ <javacArg >-Xlint:unchecked</javacArg >
66
+ <javacArg >-Xlint:deprecation</javacArg >
67
+ </javacArgs >
68
+ </configuration >
69
+ <executions >
70
+ <execution >
71
+ <goals >
72
+ <goal >compile</goal >
73
+ <goal >testCompile</goal >
74
+ </goals >
75
+ </execution >
76
+ </executions >
77
+ </plugin >
78
+ </plugins >
79
+ </build >
80
+
37
81
</project >
You can’t perform that action at this time.
0 commit comments