|
12 | 12 | <artifactId>jruby-rack</artifactId>
|
13 | 13 | <version>1.2.3-SNAPSHOT</version>
|
14 | 14 | <name>JRuby-Rack</name>
|
15 |
| - <url>http://github.com/jruby/jruby-rack/</url> |
| 15 | + <url>https://github.com/jruby/jruby-rack/</url> |
16 | 16 | <description>
|
17 | 17 | A servlet bridge for (Ruby-based) Rack applications that allow them
|
18 | 18 | to run in Java Application servers using JRuby.
|
19 | 19 | </description>
|
20 | 20 |
|
21 | 21 | <properties>
|
22 | 22 | <jruby.version>9.4.7.0</jruby.version>
|
23 |
| - <vendor.gems.path>vendor/gems</vendor.gems.path> |
24 |
| - <bundler.version>2.4.19</bundler.version> |
25 |
| - <bundler.local>false</bundler.local> <!-- true by default --> |
26 | 23 | <jruby.maven.plugins.version>3.0.3</jruby.maven.plugins.version>
|
27 | 24 | <gem.home>${project.build.directory}/rubygems</gem.home>
|
| 25 | + <slf4j.version>2.0.12</slf4j.version> |
28 | 26 | </properties>
|
29 | 27 |
|
30 | 28 | <issueManagement>
|
31 | 29 | <system>Github</system>
|
32 |
| - <url>http://github.com/jruby/jruby-rack/issues</url> |
| 30 | + <url>https://github.com/jruby/jruby-rack/issues</url> |
33 | 31 | </issueManagement>
|
34 | 32 |
|
35 | 33 | <distributionManagement>
|
|
46 | 44 | <scm>
|
47 | 45 | <connection>scm:git:git://github.com/jruby/jruby-rack.git</connection>
|
48 | 46 | < developerConnection>scm:git: [email protected]:jruby/jruby-rack.git</ developerConnection>
|
49 |
| - <url>http://github.com/jruby/jruby-rack/</url> |
| 47 | + <url>https://github.com/jruby/jruby-rack/</url> |
50 | 48 | <tag>HEAD</tag>
|
51 | 49 | </scm>
|
52 | 50 |
|
53 | 51 | <licenses>
|
54 | 52 | <license>
|
55 | 53 | <name>MIT License</name>
|
56 |
| - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 54 | + <url>https://www.opensource.org/licenses/mit-license.php</url> |
57 | 55 | <distribution>repo</distribution>
|
58 | 56 | </license>
|
59 | 57 | </licenses>
|
|
97 | 95 | <groupId>org.jruby</groupId>
|
98 | 96 | <artifactId>jruby-core</artifactId>
|
99 | 97 | <version>${jruby.version}</version>
|
100 |
| - </dependency> |
101 |
| - <!-- JavaEE 6 APIs --> |
102 |
| - <dependency> |
103 |
| - <groupId>org.apache.geronimo.specs</groupId> |
104 |
| - <artifactId>geronimo-servlet_3.0_spec</artifactId> |
105 |
| - <version>1.0</version> |
106 | 98 | <scope>provided</scope>
|
107 | 99 | </dependency>
|
108 | 100 | <dependency>
|
109 |
| - <groupId>org.apache.geronimo.specs</groupId> |
110 |
| - <artifactId>geronimo-jsp_2.2_spec</artifactId> |
111 |
| - <version>1.2</version> |
| 101 | + <groupId>javax.servlet</groupId> |
| 102 | + <artifactId>javax.servlet-api</artifactId> |
| 103 | + <version>3.0.1</version> |
112 | 104 | <scope>provided</scope>
|
113 | 105 | </dependency>
|
114 | 106 | <dependency>
|
115 |
| - <groupId>org.apache.geronimo.specs</groupId> |
116 |
| - <artifactId>geronimo-el_2.2_spec</artifactId> |
117 |
| - <version>1.0.4</version> |
| 107 | + <groupId>jakarta.servlet.jsp</groupId> |
| 108 | + <artifactId>jakarta.servlet.jsp-api</artifactId> |
| 109 | + <version>2.3.6</version> |
118 | 110 | <scope>provided</scope>
|
119 | 111 | </dependency>
|
120 | 112 | <dependency>
|
121 |
| - <groupId>org.apache.geronimo.specs</groupId> |
122 |
| - <artifactId>geronimo-jms_1.1_spec</artifactId> |
123 |
| - <version>1.1.1</version> |
| 113 | + <groupId>jakarta.jms</groupId> |
| 114 | + <artifactId>jakarta.jms-api</artifactId> |
| 115 | + <version>2.0.3</version> |
124 | 116 | <scope>provided</scope>
|
125 | 117 | </dependency>
|
126 | 118 | <dependency>
|
127 | 119 | <groupId>commons-logging</groupId>
|
128 |
| - <artifactId>commons-logging-api</artifactId> |
129 |
| - <version>1.1</version> |
| 120 | + <artifactId>commons-logging</artifactId> |
| 121 | + <version>1.3.3</version> |
130 | 122 | <scope>provided</scope>
|
131 | 123 | </dependency>
|
132 | 124 | <dependency>
|
133 | 125 | <groupId>org.slf4j</groupId>
|
134 | 126 | <artifactId>slf4j-api</artifactId>
|
135 |
| - <version>1.7.2</version> |
| 127 | + <version>${slf4j.version}</version> |
136 | 128 | <scope>provided</scope>
|
137 | 129 | </dependency>
|
138 | 130 | <dependency>
|
139 |
| - <groupId>log4j</groupId> |
140 |
| - <artifactId>log4j</artifactId> |
141 |
| - <version>1.2.17</version> |
142 |
| - <scope>provided</scope> |
| 131 | + <groupId>org.slf4j</groupId> |
| 132 | + <artifactId>slf4j-simple</artifactId> |
| 133 | + <version>${slf4j.version}</version> |
| 134 | + <scope>test</scope> |
143 | 135 | </dependency>
|
144 | 136 | <dependency>
|
145 | 137 | <groupId>org.springframework</groupId>
|
146 | 138 | <artifactId>spring-core</artifactId>
|
147 |
| - <version>3.2.10.RELEASE</version> |
| 139 | + <version>3.2.18.RELEASE</version> |
148 | 140 | <scope>test</scope>
|
149 | 141 | </dependency>
|
150 | 142 | <dependency>
|
151 |
| - <groupId>rubygems</groupId> |
152 |
| - <artifactId>jruby-openssl</artifactId> |
153 |
| - <version>0.9.6</version> |
154 |
| - <type>gem</type> |
155 |
| - <scope>provided</scope> |
156 |
| - </dependency> |
157 |
| - <dependency> |
158 |
| - <groupId>rubygems</groupId> |
159 |
| - <artifactId>bundler</artifactId> |
160 |
| - <version>${bundler.version}</version> |
161 |
| - <type>gem</type> |
162 |
| - <scope>provided</scope> |
163 |
| - </dependency> |
164 |
| - <dependency> |
165 |
| - <groupId>javax.activation</groupId> |
166 |
| - <artifactId>activation</artifactId> |
167 |
| - <version>1.1</version> |
| 143 | + <groupId>jakarta.el</groupId> |
| 144 | + <artifactId>jakarta.el-api</artifactId> |
| 145 | + <version>3.0.3</version> |
168 | 146 | <scope>test</scope>
|
169 | 147 | </dependency>
|
170 | 148 | </dependencies>
|
|
198 | 176 | <plugin>
|
199 | 177 | <groupId>org.apache.maven.plugins</groupId>
|
200 | 178 | <artifactId>maven-compiler-plugin</artifactId>
|
201 |
| - <version>3.1</version> |
| 179 | + <version>3.13.0</version> |
202 | 180 | <configuration>
|
203 | 181 | <source>8</source>
|
204 | 182 | <target>8</target>
|
|
209 | 187 | <plugin>
|
210 | 188 | <groupId>org.apache.maven.plugins</groupId>
|
211 | 189 | <artifactId>maven-surefire-plugin</artifactId>
|
212 |
| - <version>2.17</version> |
| 190 | + <version>3.3.1</version> |
213 | 191 | </plugin>
|
214 | 192 | <plugin>
|
215 | 193 | <groupId>org.apache.maven.plugins</groupId>
|
216 | 194 | <artifactId>maven-help-plugin</artifactId>
|
217 |
| - <version>2.2</version> |
| 195 | + <version>3.4.1</version> |
218 | 196 | </plugin>
|
219 | 197 | <plugin>
|
220 | 198 | <groupId>org.apache.maven.plugins</groupId>
|
221 | 199 | <artifactId>maven-dependency-plugin</artifactId>
|
222 |
| - <version>2.9</version> |
| 200 | + <version>3.7.1</version> |
223 | 201 | <executions>
|
224 | 202 | <execution>
|
225 | 203 | <phase>process-sources</phase>
|
|
234 | 212 | </execution>
|
235 | 213 | </executions>
|
236 | 214 | </plugin>
|
237 |
| - <plugin> |
238 |
| - <groupId>org.jruby.maven</groupId> |
239 |
| - <artifactId>gem-maven-plugin</artifactId> |
240 |
| - <version>${jruby.maven.plugins.version}</version> |
241 |
| - <configuration> |
242 |
| - <includeOpenSSL>false</includeOpenSSL> |
243 |
| - <gemHomes> |
244 |
| - <provided>${gem.home}</provided> |
245 |
| - </gemHomes> |
246 |
| - </configuration> |
247 |
| - <executions> |
248 |
| - <execution> |
249 |
| - <id>gem-install-bundler</id> |
250 |
| - <phase>test</phase> |
251 |
| - <goals> |
252 |
| - <goal>initialize</goal> |
253 |
| - </goals> |
254 |
| - </execution> |
255 |
| - </executions> |
256 |
| - </plugin> |
257 | 215 | <plugin>
|
258 | 216 | <groupId>org.jruby.maven</groupId>
|
259 | 217 | <artifactId>bundler-maven-plugin</artifactId>
|
|
264 | 222 | <phase>test</phase>
|
265 | 223 | <goals><goal>install</goal></goals>
|
266 | 224 | <configuration>
|
267 |
| - <jruby.version>${jruby.version}</jruby.version> |
268 |
| - <!--<local>false</local>--> |
269 |
| - <bundlerVersion>${bundler.version}</bundlerVersion> |
| 225 | + <jrubyVersion>${jruby.version}</jrubyVersion> |
| 226 | + <local>false</local> |
| 227 | + <quiet>false</quiet> |
270 | 228 | </configuration>
|
271 | 229 | </execution>
|
272 | 230 | </executions>
|
|
275 | 233 | <groupId>org.jruby.maven</groupId>
|
276 | 234 | <artifactId>rake-maven-plugin</artifactId>
|
277 | 235 | <version>${jruby.maven.plugins.version}</version>
|
| 236 | + <configuration> |
| 237 | + <jrubyVersion>${jruby.version}</jrubyVersion> |
| 238 | + </configuration> |
278 | 239 | <executions>
|
279 |
| -<!-- <execution>--> |
280 |
| -<!-- <id>rake-spec</id>--> |
281 |
| -<!-- <phase>test</phase>--> |
282 |
| -<!-- <goals><goal>rake</goal></goals>--> |
283 |
| -<!-- <configuration>--> |
284 |
| -<!-- <jruby.version>${jruby.version}</jruby.version>--> |
285 |
| -<!-- <args>speconly SKIP_SPECS=${maven.test.skip} FULL_BIN_PATH=true</args>--> |
286 |
| -<!-- </configuration>--> |
287 |
| -<!-- </execution>--> |
| 240 | + <execution> |
| 241 | + <id>rake-spec</id> |
| 242 | + <phase>test</phase> |
| 243 | + <goals><goal>rake</goal></goals> |
| 244 | + <configuration> |
| 245 | + <args>speconly SKIP_SPECS=${maven.test.skip}</args> |
| 246 | + </configuration> |
| 247 | + </execution> |
288 | 248 | <execution>
|
289 | 249 | <!-- additional (ruby) generated resources -->
|
290 | 250 | <id>rake-resources</id>
|
291 | 251 | <phase>prepare-package</phase>
|
292 | 252 | <!-- bind "late" so we do not run during compile/test-compile -->
|
293 | 253 | <goals><goal>rake</goal></goals>
|
294 | 254 | <configuration>
|
295 |
| - <jruby.version>${jruby.version}</jruby.version> |
296 | 255 | <args>resources VERSION=${project.version}</args>
|
297 | 256 | </configuration>
|
298 | 257 | </execution>
|
299 | 258 | </executions>
|
300 | 259 | </plugin>
|
| 260 | + <plugin> |
| 261 | + <groupId>org.codehaus.mojo</groupId> |
| 262 | + <artifactId>versions-maven-plugin</artifactId> |
| 263 | + <version>2.17.1</version> |
| 264 | + </plugin> |
301 | 265 | </plugins>
|
302 | 266 | </build>
|
303 | 267 |
|
|
328 | 292 | <plugin>
|
329 | 293 | <groupId>org.apache.maven.plugins</groupId>
|
330 | 294 | <artifactId>maven-javadoc-plugin</artifactId>
|
331 |
| - <version>2.10.1</version> |
| 295 | + <version>3.7.0</version> |
332 | 296 | <executions>
|
333 | 297 | <execution>
|
334 | 298 | <id>attach-javadocs</id>
|
|
0 commit comments