Skip to content

Commit 8c149b3

Browse files
committed
3.2
1 parent 5fb3cea commit 8c149b3

File tree

20 files changed

+381
-23
lines changed

20 files changed

+381
-23
lines changed

avaje-jex-freemarker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>avaje-jex-parent</artifactId>
66
<groupId>io.avaje</groupId>
7-
<version>3.2-RC1</version>
7+
<version>3.2</version>
88
</parent>
99

1010
<artifactId>avaje-jex-freemarker</artifactId>

avaje-jex-grizzly-spi/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<parent>
66
<groupId>io.avaje</groupId>
77
<artifactId>avaje-jex-parent</artifactId>
8-
<version>3.2-RC1</version>
8+
<version>3.2</version>
99
</parent>
10-
<version>0.4</version>
10+
<version>0.5</version>
1111
<artifactId>avaje-jex-grizzly-spi</artifactId>
1212

1313
<dependencies>

avaje-jex-htmx/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-jex-parent</artifactId>
9-
<version>3.2-RC1</version>
9+
<version>3.2</version>
1010
</parent>
1111

1212
<artifactId>avaje-jex-htmx</artifactId>

avaje-jex-mustache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>avaje-jex-parent</artifactId>
66
<groupId>io.avaje</groupId>
7-
<version>3.2-RC1</version>
7+
<version>3.2</version>
88
</parent>
99

1010
<artifactId>avaje-jex-mustache</artifactId>

avaje-jex-static-content/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.avaje</groupId>
77
<artifactId>avaje-jex-parent</artifactId>
8-
<version>3.2-RC1</version>
8+
<version>3.2</version>
99
</parent>
1010
<artifactId>avaje-jex-static-content</artifactId>
1111
<dependencies>

avaje-jex-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>avaje-jex-parent</artifactId>
66
<groupId>io.avaje</groupId>
7-
<version>3.2-RC1</version>
7+
<version>3.2</version>
88
</parent>
99

1010
<artifactId>avaje-jex-test</artifactId>

avaje-jex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-jex-parent</artifactId>
9-
<version>3.2-RC1</version>
9+
<version>3.2</version>
1010
</parent>
1111

1212
<artifactId>avaje-jex</artifactId>

examples/example-http-generation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.avaje</groupId>
77
<artifactId>examples</artifactId>
8-
<version>3.2-RC1</version>
8+
<version>3.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<groupId>io.avaje</groupId>
7+
<artifactId>examples</artifactId>
8+
<version>3.2-RC1</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>example-http-generation</artifactId>
13+
14+
<properties>
15+
<maven.compiler.proc>full</maven.compiler.proc>
16+
<maven.compiler.release>21</maven.compiler.release>
17+
</properties>
18+
19+
<dependencies>
20+
21+
<dependency>
22+
<groupId>io.avaje</groupId>
23+
<artifactId>avaje-config</artifactId>
24+
</dependency>
25+
26+
27+
<dependency>
28+
<groupId>io.avaje</groupId>
29+
<artifactId>avaje-inject</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>io.avaje</groupId>
33+
<artifactId>avaje-http-api</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>io.avaje</groupId>
37+
<artifactId>avaje-http-client</artifactId>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>io.avaje</groupId>
42+
<artifactId>avaje-jex</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>io.avaje</groupId>
46+
<artifactId>avaje-jsonb</artifactId>
47+
</dependency>
48+
49+
<dependency>
50+
<groupId>io.avaje</groupId>
51+
<artifactId>avaje-inject-test</artifactId>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>io.avaje</groupId>
56+
<artifactId>avaje-jex-test</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
60+
61+
<!-- Annotation processors -->
62+
<dependency>
63+
<groupId>io.avaje</groupId>
64+
<artifactId>avaje-inject-generator</artifactId>
65+
<scope>provided</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>io.avaje</groupId>
69+
<artifactId>avaje-jsonb-generator</artifactId>
70+
<scope>provided</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>io.avaje</groupId>
74+
<artifactId>avaje-http-client-generator</artifactId>
75+
<scope>provided</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>io.avaje</groupId>
79+
<artifactId>avaje-http-jex-generator</artifactId>
80+
<scope>provided</scope>
81+
</dependency>
82+
</dependencies>
83+
84+
</project>

examples/example-jdk-jsonb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>examples</artifactId>
9-
<version>3.2-RC1</version>
9+
<version>3.2</version>
1010
</parent>
1111

1212
<groupId>org.example</groupId>

0 commit comments

Comments
 (0)