1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!--
3
3
4
- Copyright (c) 2022 Contributors to the Eclipse Foundation.
4
+ Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation.
5
5
Copyright (c) 1997, 2021 Oracle and/or its affiliates and others.
6
6
All rights reserved.
7
7
19
19
20
20
-->
21
21
22
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http ://maven.apache.org/xsd/maven-4.0.0.xsd" >
22
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https ://maven.apache.org/xsd/maven-4.0.0.xsd" >
23
23
<modelVersion >4.0.0</modelVersion >
24
24
25
25
<parent >
26
26
<groupId >org.eclipse.ee4j</groupId >
27
27
<artifactId >project</artifactId >
28
- <version >1.0.6 </version >
28
+ <version >1.0.9 </version >
29
29
<relativePath />
30
30
</parent >
31
31
32
32
<groupId >org.glassfish.expressly</groupId >
33
33
<artifactId >expressly</artifactId >
34
- <version >5 .0.0-SNAPSHOT</version >
34
+ <version >6 .0.0-SNAPSHOT</version >
35
35
36
36
<name >Eclipse Expressly</name >
37
37
<description >Jakarta Expression Language Implementation</description >
47
47
</developers >
48
48
<contributors >
49
49
<contributor >
50
- <name >Jakarta Expression Language Contributors</name >
51
- <
email >
el [email protected] </
email >
52
- <url >https://github.com/eclipse-ee4j/el-ri /graphs/contributors</url >
50
+ <name >Expressly Contributors</name >
51
+ <
email >
expressly [email protected] </
email >
52
+ <url >https://github.com/eclipse-ee4j/expressly /graphs/contributors</url >
53
53
</contributor >
54
54
</contributors >
55
55
64
64
</mailingLists >
65
65
66
66
<scm >
67
- <connection >scm:git:https://github.com/eclipse-ee4j/expressly-ri.git</connection >
68
- <
developerConnection >scm:git:ssh://
[email protected] /eclipse-ee4j/expressly-ri.git</
developerConnection >
69
- <url >https://github.com/eclipse-ee4j/expressly-ri</url >
70
- <tag >HEAD</tag >
67
+ <connection >scm:git:https://github.com/eclipse-ee4j/expressly.git</connection >
68
+ <
developerConnection >scm:git:ssh://
[email protected] /eclipse-ee4j/expressly.git</
developerConnection >
69
+ <url >https://github.com/eclipse-ee4j/expressly</url >
71
70
</scm >
72
71
<issueManagement >
73
72
<system >github</system >
74
- <url >https://github.com/eclipse-ee4j/expressly-ri /issues</url >
73
+ <url >https://github.com/eclipse-ee4j/expressly/issues</url >
75
74
</issueManagement >
76
75
77
76
<dependencies >
78
77
<dependency >
79
78
<groupId >jakarta.el</groupId >
80
79
<artifactId >jakarta.el-api</artifactId >
81
- <version >5 .0.0</version >
80
+ <version >6 .0.0-M1 </version >
82
81
</dependency >
83
82
<dependency >
84
83
<groupId >junit</groupId >
109
108
<plugins >
110
109
<!-- Sets minimal Maven version -->
111
110
<plugin >
112
- <groupId >org.apache.maven.plugins</groupId >
113
111
<artifactId >maven-enforcer-plugin</artifactId >
114
- <version >3.0.0</version >
115
112
<executions >
116
113
<execution >
117
114
<id >enforce-maven</id >
135
132
<plugin >
136
133
<groupId >org.apache.felix</groupId >
137
134
<artifactId >maven-bundle-plugin</artifactId >
138
- <version >5.1.4 </version >
135
+ <version >5.1.9 </version >
139
136
<configuration >
140
137
<supportIncrementalBuild >true</supportIncrementalBuild >
141
138
<instructions >
142
139
<Bundle-SymbolicName >org.glassfish.expressly</Bundle-SymbolicName >
143
140
<_include >-osgi.bundle</_include >
141
+ <_noimportjava >true</_noimportjava >
142
+ <_runee >JavaSE-17</_runee >
144
143
</instructions >
145
144
</configuration >
146
145
<executions >
156
155
157
156
<!-- Adds the manifest file created by the org.apache.felix:maven-bundle-plugin -->
158
157
<plugin >
159
- <groupId >org.apache.maven.plugins</groupId >
160
158
<artifactId >maven-jar-plugin</artifactId >
161
- <version >3.2.2</version >
162
159
<configuration >
163
160
<archive >
164
161
<manifestFile >
165
162
${project.build.outputDirectory} /META-INF/MANIFEST.MF
166
163
</manifestFile >
167
164
<manifestEntries >
168
165
<Extension-Name >org.glassfish.expressly</Extension-Name >
169
- <Specification-Version >5 .0</Specification-Version >
166
+ <Specification-Version >6 .0</Specification-Version >
170
167
<Specification-Vendor >Eclipse Foundation</Specification-Vendor >
171
168
<Implementation-Version >${project.version} </Implementation-Version >
172
169
<Implementation-Vendor >${vendorName} </Implementation-Vendor >
176
173
</configuration >
177
174
</plugin >
178
175
179
- <!-- Restricts the Java version to 11 -->
176
+ <!-- Restricts the Java version to 17 -->
180
177
<plugin >
181
- <groupId >org.apache.maven.plugins</groupId >
182
178
<artifactId >maven-compiler-plugin</artifactId >
183
- <version >3.10.1 </version >
179
+ <version >3.11.0 </version >
184
180
<configuration >
185
- <release >11 </release >
181
+ <release >17 </release >
186
182
<compilerArgument >-Xlint:unchecked</compilerArgument >
187
183
</configuration >
188
184
</plugin >
189
185
190
186
<!-- Create Javadoc for API jar -->
191
187
<plugin >
192
- <groupId >org.apache.maven.plugins</groupId >
193
188
<artifactId >maven-javadoc-plugin</artifactId >
194
- <version >3.3.1</version >
195
189
<executions >
196
190
<execution >
197
191
<id >attach-javadocs</id >
209
203
</group >
210
204
</groups >
211
205
<bottom ><![CDATA[
212
- Comments to: <a href="mailto:el [email protected] ">el [email protected] </a>.<br>
213
- Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.<br>
206
+ Comments to: <a href="mailto:expressly [email protected] ">expressly [email protected] </a>.<br>
207
+ Copyright © 2018, 2023 Eclipse Foundation. All rights reserved.<br>
214
208
Use is subject to <a href="http://www.eclipse.org/legal/epl-2.0" target="_top">license terms</a>.]]>
215
209
</bottom >
216
210
</configuration >
@@ -222,21 +216,11 @@ Use is subject to <a href="http://www.eclipse.org/legal/epl-2.0" target="_top">l
222
216
<version>2.6</version> <executions> <execution> <id>jjtree-javacc</id> <goals> <goal>jjtree-javacc</goal> </goals> <configuration> <sourceDirectory>src/main/java/com/sun/el/parser</sourceDirectory>
223
217
<outputDirectory>src/main/java/com/sun/el/parser</outputDirectory> </configuration> </execution> </executions> </plugin> -->
224
218
225
- <plugin >
226
- <groupId >org.apache.maven.plugins</groupId >
227
- <artifactId >maven-release-plugin</artifactId >
228
- <configuration >
229
- <mavenExecutorId >forked-path</mavenExecutorId >
230
- <useReleaseProfile >false</useReleaseProfile >
231
- <arguments >${release.arguments} </arguments >
232
- </configuration >
233
- </plugin >
234
-
235
219
<plugin >
236
220
<artifactId >maven-surefire-plugin</artifactId >
237
- <version >3.0.0-M5 </version >
221
+ <version >3.2.2 </version >
238
222
<configuration >
239
- <forkMode >never</ forkMode >
223
+ <forkCount >1</ forkCount >
240
224
</configuration >
241
225
</plugin >
242
226
</plugins >
0 commit comments