|
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. |
|
22 | 22 | <jruby.version>9.4.7.0</jruby.version> |
23 | 23 | <jruby.maven.plugins.version>3.0.3</jruby.maven.plugins.version> |
24 | 24 | <gem.home>${project.build.directory}/rubygems</gem.home> |
| 25 | + <slf4j.version>2.0.12</slf4j.version> |
25 | 26 | </properties> |
26 | 27 |
|
27 | 28 | <issueManagement> |
28 | 29 | <system>Github</system> |
29 | | - <url>http://github.com/jruby/jruby-rack/issues</url> |
| 30 | + <url>https://github.com/jruby/jruby-rack/issues</url> |
30 | 31 | </issueManagement> |
31 | 32 |
|
32 | 33 | <distributionManagement> |
|
43 | 44 | <scm> |
44 | 45 | <connection>scm:git:git://github.com/jruby/jruby-rack.git</connection> |
45 | 46 | <developerConnection>scm:git:git@github.com:jruby/jruby-rack.git</developerConnection> |
46 | | - <url>http://github.com/jruby/jruby-rack/</url> |
| 47 | + <url>https://github.com/jruby/jruby-rack/</url> |
47 | 48 | <tag>HEAD</tag> |
48 | 49 | </scm> |
49 | 50 |
|
50 | 51 | <licenses> |
51 | 52 | <license> |
52 | 53 | <name>MIT License</name> |
53 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 54 | + <url>https://www.opensource.org/licenses/mit-license.php</url> |
54 | 55 | <distribution>repo</distribution> |
55 | 56 | </license> |
56 | 57 | </licenses> |
|
123 | 124 | </dependency> |
124 | 125 | <dependency> |
125 | 126 | <groupId>commons-logging</groupId> |
126 | | - <artifactId>commons-logging-api</artifactId> |
127 | | - <version>1.1</version> |
| 127 | + <artifactId>commons-logging</artifactId> |
| 128 | + <version>1.3.3</version> |
128 | 129 | <scope>provided</scope> |
129 | 130 | </dependency> |
130 | 131 | <dependency> |
131 | 132 | <groupId>org.slf4j</groupId> |
132 | 133 | <artifactId>slf4j-api</artifactId> |
133 | | - <version>1.7.2</version> |
| 134 | + <version>${slf4j.version}</version> |
134 | 135 | <scope>provided</scope> |
135 | 136 | </dependency> |
136 | 137 | <dependency> |
137 | | - <groupId>log4j</groupId> |
138 | | - <artifactId>log4j</artifactId> |
139 | | - <version>1.2.17</version> |
140 | | - <scope>provided</scope> |
| 138 | + <groupId>org.slf4j</groupId> |
| 139 | + <artifactId>slf4j-simple</artifactId> |
| 140 | + <version>${slf4j.version}</version> |
| 141 | + <scope>test</scope> |
141 | 142 | </dependency> |
142 | 143 | <dependency> |
143 | 144 | <groupId>org.springframework</groupId> |
|
0 commit comments