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>
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>io.avaje</groupId>
8+
<artifactId>examples</artifactId>
9+
<version>3.2-RC1</version>
10+
</parent>
11+
12+
<groupId>org.example</groupId>
13+
<artifactId>example-jdk-jsonb</artifactId>
14+
15+
<properties>
16+
<maven.compiler.source>21</maven.compiler.source>
17+
</properties>
18+
19+
<dependencies>
20+
21+
<dependency>
22+
<groupId>io.avaje</groupId>
23+
<artifactId>avaje-config</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>io.avaje</groupId>
27+
<artifactId>avaje-jex</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>io.avaje</groupId>
31+
<artifactId>avaje-jsonb</artifactId>
32+
</dependency>
33+
34+
<!-- Annotation processors -->
35+
<dependency>
36+
<groupId>io.avaje</groupId>
37+
<artifactId>avaje-inject-generator</artifactId>
38+
<scope>provided</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>io.avaje</groupId>
42+
<artifactId>avaje-jsonb-generator</artifactId>
43+
<scope>provided</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>io.avaje</groupId>
47+
<artifactId>avaje-http-client-generator</artifactId>
48+
<scope>provided</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.avaje</groupId>
52+
<artifactId>avaje-http-jex-generator</artifactId>
53+
<scope>provided</scope>
54+
</dependency>
55+
</dependencies>
56+
57+
<profiles>
58+
<profile>
59+
<id>native</id>
60+
<build>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.graalvm.buildtools</groupId>
64+
<artifactId>native-maven-plugin</artifactId>
65+
<version>0.10.6</version>
66+
<extensions>true</extensions>
67+
<executions>
68+
<execution>
69+
<id>build-native</id>
70+
<goals>
71+
<goal>build</goal>
72+
</goals>
73+
<phase>package</phase>
74+
</execution>
75+
<execution>
76+
<id>test-native</id>
77+
<goals>
78+
<goal>test</goal>
79+
</goals>
80+
<phase>test</phase>
81+
</execution>
82+
</executions>
83+
<configuration>
84+
<imageName>mytest</imageName>
85+
<mainClass>org.example.Main</mainClass>
86+
<buildArgs>
87+
<!-- needed for jdk.httpserver module -->
88+
<buildArg>-J--add-modules</buildArg>
89+
<buildArg>-JALL-SYSTEM</buildArg>
90+
<buildArg>--no-fallback</buildArg>
91+
<buildArg>--allow-incomplete-classpath</buildArg>
92+
<buildArg>-H:ReflectionConfigurationFiles=graalvm-meta/reflection.json</buildArg>
93+
<!-- <buildArg>&#45;&#45;initialize-at-build-time=org.slf4j.simple.SimpleLogger</buildArg>-->
94+
<!-- <buildArg>&#45;&#45;initialize-at-build-time=org.slf4j.simple.SimpleLogger$1</buildArg>-->
95+
<!-- <buildArg>&#45;&#45;trace-object-instantiation=org.slf4j.simple.SimpleLogger</buildArg>-->
96+
</buildArgs>
97+
</configuration>
98+
</plugin>
99+
</plugins>
100+
</build>
101+
</profile>
102+
</profiles>
103+
104+
105+
</project>

examples/example-jdk/pom.xml

Lines changed: 2 additions & 2 deletions
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>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.avaje</groupId>
2525
<artifactId>avaje-jex</artifactId>
26-
<version>3.2-RC1</version>
26+
<version>3.2</version>
2727
</dependency>
2828

2929
<dependency>
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>io.avaje</groupId>
8+
<artifactId>examples</artifactId>
9+
<version>3.2-RC1</version>
10+
</parent>
11+
12+
<groupId>org.example</groupId>
13+
<artifactId>example-jdk</artifactId>
14+
<version>1</version>
15+
16+
<properties>
17+
<javadoc.source>11</javadoc.source>
18+
<java.release>11</java.release>
19+
</properties>
20+
21+
<dependencies>
22+
23+
<dependency>
24+
<groupId>io.avaje</groupId>
25+
<artifactId>avaje-jex</artifactId>
26+
<version>3.2-RC1</version>
27+
</dependency>
28+
29+
<dependency>
30+
<groupId>com.fasterxml.jackson.core</groupId>
31+
<artifactId>jackson-databind</artifactId>
32+
<version>2.19.0</version>
33+
</dependency>
34+
35+
<dependency>
36+
<groupId>org.slf4j</groupId>
37+
<artifactId>slf4j-api</artifactId>
38+
<version>2.0.17</version>
39+
</dependency>
40+
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
<version>1.5.18</version>
45+
</dependency>
46+
47+
</dependencies>
48+
49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-compiler-plugin</artifactId>
54+
<version>3.14.0</version>
55+
<configuration>
56+
<release>${java.release}</release>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>io.repaint.maven</groupId>
61+
<artifactId>tiles-maven-plugin</artifactId>
62+
<version>2.40</version>
63+
<extensions>true</extensions>
64+
<configuration>
65+
<tiles>
66+
<tile>org.avaje.tile:lib-classpath:1.1</tile>
67+
</tiles>
68+
</configuration>
69+
</plugin>
70+
</plugins>
71+
</build>
72+
73+
</project>

examples/example-jetty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.avaje</groupId>
55
<artifactId>examples</artifactId>
6-
<version>3.2-RC1</version>
6+
<version>3.2</version>
77
</parent>
88
<artifactId>example-jetty</artifactId>
99
<dependencies>

0 commit comments

Comments
 (0)