File tree 4 files changed +17
-6
lines changed
src/main/java/com/example
4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ /.idea
2
+ /target
Original file line number Diff line number Diff line change
1
+ # CRaC Example application
2
+
3
+ For more info, check:
4
+
5
+ * [ What is CRaC?] ( https://docs.azul.com/core/crac/crac-introduction )
6
+ * About this example application: [ Step-by-step CRaC support for a Jetty app] ( https://github.com/CRaC/docs/blob/master/STEP-BY-STEP.md ) .
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
-
3
2
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
4
<modelVersion >4.0.0</modelVersion >
19
18
<dependency >
20
19
<groupId >junit</groupId >
21
20
<artifactId >junit</artifactId >
22
- <version >4.11 </version >
21
+ <version >4.13.1 </version >
23
22
<scope >test</scope >
24
23
</dependency >
25
24
<dependency >
26
25
<groupId >org.eclipse.jetty</groupId >
27
26
<artifactId >jetty-server</artifactId >
28
- <version >9.4.30.v20200611</version >
27
+ <version >9.4.48.v20220622</version >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >org.crac</groupId >
31
+ <artifactId >crac</artifactId >
32
+ <version >1.3.0</version >
29
33
</dependency >
30
34
<dependency >
31
35
<groupId >org.crac</groupId >
45
49
<maven .compiler.target>14</maven .compiler.target>
46
50
</properties >
47
51
</profile >
52
+
48
53
<profile >
49
54
<id >javax</id >
50
55
<properties >
51
56
<maven .compiler.source>14</maven .compiler.source>
52
57
<maven .compiler.target>14</maven .compiler.target>
53
58
</properties >
54
59
</profile >
60
+
55
61
<profile >
56
62
<id >org</id >
57
63
<properties >
61
67
</profile >
62
68
</profiles >
63
69
64
-
65
70
<build >
66
71
<pluginManagement ><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
67
72
<plugins >
Original file line number Diff line number Diff line change 5
5
import javax .servlet .ServletException ;
6
6
import java .io .IOException ;
7
7
8
- // org.crac could be used instead of jdk.crac
9
- // https://github.com/CRaC/docs#orgcrac
10
8
import org .crac .Context ;
11
9
import org .crac .Core ;
12
10
import org .crac .Resource ;
You can’t perform that action at this time.
0 commit comments