Skip to content

Commit 6ba5ad9

Browse files
authored
Bump dependencies and add minimal README (#9)
1 parent 2354e10 commit 6ba5ad9

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.idea
2+
/target

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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).

pom.xml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
43
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54
<modelVersion>4.0.0</modelVersion>
@@ -19,13 +18,18 @@
1918
<dependency>
2019
<groupId>junit</groupId>
2120
<artifactId>junit</artifactId>
22-
<version>4.11</version>
21+
<version>4.13.1</version>
2322
<scope>test</scope>
2423
</dependency>
2524
<dependency>
2625
<groupId>org.eclipse.jetty</groupId>
2726
<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>
2933
</dependency>
3034
<dependency>
3135
<groupId>org.crac</groupId>
@@ -45,13 +49,15 @@
4549
<maven.compiler.target>14</maven.compiler.target>
4650
</properties>
4751
</profile>
52+
4853
<profile>
4954
<id>javax</id>
5055
<properties>
5156
<maven.compiler.source>14</maven.compiler.source>
5257
<maven.compiler.target>14</maven.compiler.target>
5358
</properties>
5459
</profile>
60+
5561
<profile>
5662
<id>org</id>
5763
<properties>
@@ -61,7 +67,6 @@
6167
</profile>
6268
</profiles>
6369

64-
6570
<build>
6671
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
6772
<plugins>

src/main/java/com/example/App.java

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import javax.servlet.ServletException;
66
import java.io.IOException;
77

8-
// org.crac could be used instead of jdk.crac
9-
// https://github.com/CRaC/docs#orgcrac
108
import org.crac.Context;
119
import org.crac.Core;
1210
import org.crac.Resource;

0 commit comments

Comments
 (0)