Skip to content

Commit 5afee55

Browse files
committed
GitHub account renamed from orfjackal to luontola
1 parent 54ac5e8 commit 5afee55

File tree

4 files changed

+62
-63
lines changed

4 files changed

+62
-63
lines changed

README.md

+56-56
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ To run Retrolambda using Maven, add the following to your pom.xml:
6767
</plugin>
6868
```
6969

70-
See the [plugin documentation](http://orfjackal.github.io/retrolambda/retrolambda-maven-plugin/plugin-info.html)
71-
for all possible parameters. There is also a usage example in [end-to-end-tests/pom.xml](https://github.com/orfjackal/retrolambda/blob/master/end-to-end-tests/pom.xml)
70+
See the [plugin documentation](https://luontola.github.io/retrolambda/retrolambda-maven-plugin/plugin-info.html)
71+
for all possible parameters. There is also a usage example in [end-to-end-tests/pom.xml](https://github.com/luontola/retrolambda/blob/master/end-to-end-tests/pom.xml)
7272

7373

7474
### Gradle Plugin
@@ -94,7 +94,7 @@ Usage: java -Dretrolambda.inputDir=? -Dretrolambda.classpath=? [-javaagent:retro
9494
9595
Retrolambda takes Java 8 classes and backports lambda expressions and
9696
some other language features to work on Java 7, 6 or 5.
97-
Web site: https://github.com/orfjackal/retrolambda
97+
Web site: https://github.com/luontola/retrolambda
9898
9999
Copyright (c) 2013-2017 Esko Luontola and other Retrolambda contributors
100100
This software is released under the Apache License 2.0.
@@ -240,170 +240,170 @@ Version History
240240
### Retrolambda 2.5.4 (2018-05-30)
241241

242242
- Fix regression in Maven plugin; use classpathFile
243-
([Issue #141](https://github.com/orfjackal/retrolambda/issues/141))
243+
([Issue #141](https://github.com/luontola/retrolambda/issues/141))
244244

245245
### Retrolambda 2.5.3 (2017-12-28)
246246

247247
- Copy the `SourceFile` attribute of the enclosing class into the lambda class
248-
([Issue #131](https://github.com/orfjackal/retrolambda/issues/131))
248+
([Issue #131](https://github.com/luontola/retrolambda/issues/131))
249249

250250
### Retrolambda 2.5.2 (2017-12-28)
251251

252252
- Fixed running Retrolambda under Java 9
253-
([Issue #137](https://github.com/orfjackal/retrolambda/issues/137))
253+
([Issue #137](https://github.com/luontola/retrolambda/issues/137))
254254
- Consider `module-info.class` as a resource and do not try backporting it
255-
([Issue #122](https://github.com/orfjackal/retrolambda/issues/122))
255+
([Issue #122](https://github.com/luontola/retrolambda/issues/122))
256256

257257
### Retrolambda 2.5.1 (2017-02-23)
258258

259259
- Fixed the enclosing method attribute of anonymous classes declared inside
260260
lambda expressions
261-
([Issue #121](https://github.com/orfjackal/retrolambda/issues/121))
261+
([Issue #121](https://github.com/luontola/retrolambda/issues/121))
262262

263263
### Retrolambda 2.5.0 (2017-01-22)
264264

265265
- Fixed lambda expressions in subclasses accidentally overriding lambda
266266
expressions in their parent. If you are using version 2.2.0 or greater,
267267
it is strongly recommended to upgrade to this version.
268-
([Issue #109](https://github.com/orfjackal/retrolambda/issues/109))
268+
([Issue #109](https://github.com/luontola/retrolambda/issues/109))
269269

270270
### Retrolambda 2.4.0 (2017-01-11)
271271

272272
- Added an option to reduce the amount of logging
273-
([Issue #103](https://github.com/orfjackal/retrolambda/issues/103))
273+
([Issue #103](https://github.com/luontola/retrolambda/issues/103))
274274
- Removes `java/lang/invoke/LambdaForm$Hidden` annotations from the generated
275275
lambda classes to avoid issues with ProGuard
276-
([Pull request #118](https://github.com/orfjackal/retrolambda/pull/118))
276+
([Pull request #118](https://github.com/luontola/retrolambda/pull/118))
277277
- Fixed backporting classes in the default package
278-
([Issue #105](https://github.com/orfjackal/retrolambda/issues/105))
278+
([Issue #105](https://github.com/luontola/retrolambda/issues/105))
279279
- Fixed backporting `java.lang.Object` itself
280-
([Pull request #113](https://github.com/orfjackal/retrolambda/pull/113))
280+
([Pull request #113](https://github.com/luontola/retrolambda/pull/113))
281281

282282
### Retrolambda 2.3.0 (2016-04-30)
283283

284284
- Optimize generated code to reduce method count
285-
([Issue #81](https://github.com/orfjackal/retrolambda/issues/81))
285+
([Issue #81](https://github.com/luontola/retrolambda/issues/81))
286286
- Alter when accessor methods are generated
287-
([Pull request #84](https://github.com/orfjackal/retrolambda/pull/84))
287+
([Pull request #84](https://github.com/luontola/retrolambda/pull/84))
288288
- Remove NEW, DUP instructions when changing NEWINVOKESPECIAL to INVOKESTATIC
289-
([Pull request #85](https://github.com/orfjackal/retrolambda/pull/85))
289+
([Pull request #85](https://github.com/luontola/retrolambda/pull/85))
290290
- Skip access method when lambda body method can be promoted
291-
([Pull request #86](https://github.com/orfjackal/retrolambda/pull/86))
291+
([Pull request #86](https://github.com/luontola/retrolambda/pull/86))
292292
- Fix method reference to protected method in base class in other package
293293
failing with IllegalAccessError
294-
([Issue #89](https://github.com/orfjackal/retrolambda/issues/89))
294+
([Issue #89](https://github.com/luontola/retrolambda/issues/89))
295295

296296
### Retrolambda 2.2.0 (2016-04-29)
297297

298298
- Backports calls to `Objects.requireNonNull`, improving JDK 9 support
299-
([Issue #75](https://github.com/orfjackal/retrolambda/issues/75))
299+
([Issue #75](https://github.com/luontola/retrolambda/issues/75))
300300
- Optimize generated code to reduce method count
301-
([Issue #81](https://github.com/orfjackal/retrolambda/issues/81))
301+
([Issue #81](https://github.com/luontola/retrolambda/issues/81))
302302
- Detect and omit the JVM's lambda factory method
303-
([Pull request #82](https://github.com/orfjackal/retrolambda/pull/82))
303+
([Pull request #82](https://github.com/luontola/retrolambda/pull/82))
304304

305305

306306
### Retrolambda 2.1.0 (2015-12-19)
307307

308308
- Added the `-Dretrolambda.classpathFile` parameter to avoid
309309
the command line length limit
310-
([Issue #70](https://github.com/orfjackal/retrolambda/issues/70))
310+
([Issue #70](https://github.com/luontola/retrolambda/issues/70))
311311
- Added the `-Dretrolambda.includedFilesFile` parameter to avoid
312312
the command line length limit
313-
([Pull request #74](https://github.com/orfjackal/retrolambda/pull/74))
313+
([Pull request #74](https://github.com/luontola/retrolambda/pull/74))
314314
- Made it easier to invoke Retrolambda as a library. Made `Config`
315315
an interface and fixed an assumption of using the default file system
316-
([Pull request #71](https://github.com/orfjackal/retrolambda/pull/71))
316+
([Pull request #71](https://github.com/luontola/retrolambda/pull/71))
317317
- Don't create a companion class when an interface has just
318318
a static initialization block because of constant fields
319-
([Issue #66](https://github.com/orfjackal/retrolambda/issues/66))
319+
([Issue #66](https://github.com/luontola/retrolambda/issues/66))
320320
- Improved error messages: report the name of the class or lambda method which
321321
crashed Retrolambda
322-
([Issue #69](https://github.com/orfjackal/retrolambda/issues/69))
322+
([Issue #69](https://github.com/luontola/retrolambda/issues/69))
323323

324324
### Retrolambda 2.0.6 (2015-09-06)
325325

326326
- Fixed method references to constructors causing VerifyError on Android
327-
([Issue #67](https://github.com/orfjackal/retrolambda/issues/67))
327+
([Issue #67](https://github.com/luontola/retrolambda/issues/67))
328328

329329
### Retrolambda 2.0.5 (2015-07-19)
330330

331331
- Support for lambdas with marker interfaces
332-
([Issue #62](https://github.com/orfjackal/retrolambda/issues/62))
332+
([Issue #62](https://github.com/luontola/retrolambda/issues/62))
333333

334334
### Retrolambda 2.0.4 (2015-07-08)
335335

336336
- Fixed a compile error when calling default methods from another module
337-
([Issue #56](https://github.com/orfjackal/retrolambda/issues/56))
337+
([Issue #56](https://github.com/luontola/retrolambda/issues/56))
338338
- Fixed method references to constructors of the current class
339-
([Issue #60](https://github.com/orfjackal/retrolambda/issues/60))
339+
([Issue #60](https://github.com/luontola/retrolambda/issues/60))
340340
- Removes bytecode references to `java.lang.invoke.MethodHandles.Lookup` on
341341
Java 6 and older
342-
([Issue #61](https://github.com/orfjackal/retrolambda/issues/61))
342+
([Issue #61](https://github.com/luontola/retrolambda/issues/61))
343343
- Copies non-class files from input to output directory
344-
([Issue #54](https://github.com/orfjackal/retrolambda/issues/54))
344+
([Issue #54](https://github.com/luontola/retrolambda/issues/54))
345345

346346
### Retrolambda 2.0.3 (2015-06-07)
347347

348348
- Fixed Retrolambda generating stack map frames for Java 5 bytecode,
349349
causing some bytecode tools to fail
350-
([Issue #55](https://github.com/orfjackal/retrolambda/issues/55))
350+
([Issue #55](https://github.com/luontola/retrolambda/issues/55))
351351

352352
### Retrolambda 2.0.2 (2015-04-14)
353353

354354
- Fixed a hack which caused lambdas in interfaces to be backported twice,
355355
possibly producing broken method calls in the bytecode
356-
([Issue #48](https://github.com/orfjackal/retrolambda/issues/48))
356+
([Issue #48](https://github.com/luontola/retrolambda/issues/48))
357357
- Fixed the handling of non-static lambda implementation methods in
358358
interfaces, i.e. lambdas which capture `this`
359-
([Issue #48](https://github.com/orfjackal/retrolambda/issues/48))
359+
([Issue #48](https://github.com/luontola/retrolambda/issues/48))
360360
- Removes generic method signatures from the default method implementation
361361
methods which are placed in the interface's companion class, to avoid
362362
them getting out of sync with their erased method descriptors
363-
([Issue #48](https://github.com/orfjackal/retrolambda/issues/48))
363+
([Issue #48](https://github.com/luontola/retrolambda/issues/48))
364364

365365
### Retrolambda 2.0.1 (2015-04-06)
366366

367367
- Fixed not backporting lambda expressions in default methods and static
368368
methods on interfaces
369-
([Issue #48](https://github.com/orfjackal/retrolambda/issues/48))
369+
([Issue #48](https://github.com/luontola/retrolambda/issues/48))
370370

371371
### Retrolambda 2.0.0 (2015-03-28)
372372

373373
- Backports default methods and static methods on interfaces
374-
([Issue #31](https://github.com/orfjackal/retrolambda/issues/31))
374+
([Issue #31](https://github.com/luontola/retrolambda/issues/31))
375375

376376
### Retrolambda 1.8.1 (2015-01-06)
377377

378378
- Backports lambda expressions in an interface's constant initializer
379-
([Issue #42](https://github.com/orfjackal/retrolambda/issues/42))
379+
([Issue #42](https://github.com/luontola/retrolambda/issues/42))
380380

381381
### Retrolambda 1.8.0 (2014-11-16)
382382

383383
- Backports try-with-resources statements to Java 6 and older by removing
384384
calls to `Throwable.addSuppressed`
385-
([Issue #38](https://github.com/orfjackal/retrolambda/issues/38))
385+
([Issue #38](https://github.com/luontola/retrolambda/issues/38))
386386

387387
### Retrolambda 1.7.0 (2014-10-21)
388388

389389
- Support for serializable lambdas
390-
([Issue #35](https://github.com/orfjackal/retrolambda/issues/35))
390+
([Issue #35](https://github.com/luontola/retrolambda/issues/35))
391391

392392
### Retrolambda 1.6.2 (2014-10-03)
393393

394394
- Fixed a crash when trying to backport Android classes
395-
([Issue #34](https://github.com/orfjackal/retrolambda/issues/34))
395+
([Issue #34](https://github.com/luontola/retrolambda/issues/34))
396396

397397
### Retrolambda 1.6.1 (2014-08-25)
398398

399399
- Fixed a crash when trying backport classes which are nominally the same
400400
as those included in the JRE, but which have different bytecode
401-
([Issue #29](https://github.com/orfjackal/retrolambda/issues/29))
401+
([Issue #29](https://github.com/luontola/retrolambda/issues/29))
402402

403403
### Retrolambda 1.6.0 (2014-08-20)
404404

405405
- Does not anymore require the use of a Java agent
406-
([Issue #27](https://github.com/orfjackal/retrolambda/issues/27))
406+
([Issue #27](https://github.com/luontola/retrolambda/issues/27))
407407
- Maven plugin: by default run Retrolambda in the same process as Maven,
408408
making it a bit faster. If Maven is not running under Java 8, then will
409409
fall back to forking the process and using the Java agent mechanism
@@ -412,21 +412,21 @@ Version History
412412

413413
- Maven plugin: use the [JDK from Maven Toolchains](http://maven.apache.org/plugins/maven-toolchains-plugin/toolchains/jdk.html)
414414
if available. The `java8home` configuration parameter overrides this
415-
([Issue #24](https://github.com/orfjackal/retrolambda/pull/24))
415+
([Issue #24](https://github.com/luontola/retrolambda/pull/24))
416416

417417
### Retrolambda 1.4.0 (2014-07-04)
418418

419419
- Added an optional `-Dretrolambda.includedFiles` parameter to support the
420420
incremental compilers of build tools
421-
([Issue #23](https://github.com/orfjackal/retrolambda/pull/23))
421+
([Issue #23](https://github.com/luontola/retrolambda/pull/23))
422422
- Decides which lambda classes to save based on the current class being
423423
processed, instead of the class loader that loaded the lambda class
424-
([Issue #21](https://github.com/orfjackal/retrolambda/issues/21))
424+
([Issue #21](https://github.com/luontola/retrolambda/issues/21))
425425

426426
### Retrolambda 1.3.0 (2014-06-04)
427427

428428
- Maven plugin: made the input and output directories configurable
429-
([Issue #20](https://github.com/orfjackal/retrolambda/issues/20))
429+
([Issue #20](https://github.com/luontola/retrolambda/issues/20))
430430
- Maven plugin: by default use the current JRE for running Retrolambda.
431431
For the old behavior, add `<java8home>${env.JAVA8_HOME}</java8home>`
432432
to the plugin configuration
@@ -435,21 +435,21 @@ Version History
435435

436436
- Android: Fixed NoSuchMethodError when calling a private method to which
437437
there is a method reference
438-
([Issue #18](https://github.com/orfjackal/retrolambda/issues/18))
438+
([Issue #18](https://github.com/luontola/retrolambda/issues/18))
439439
- Fixed the possibility of accidentally overriding private methods to which
440440
there is method reference
441-
([Issue #19](https://github.com/orfjackal/retrolambda/issues/19))
441+
([Issue #19](https://github.com/luontola/retrolambda/issues/19))
442442

443443
### Retrolambda 1.2.2 (2014-05-15)
444444

445445
- Fixed method references to private methods; will now make them
446446
package-private the same way as lambda implementation methods
447-
([Issue #17](https://github.com/orfjackal/retrolambda/issues/17))
447+
([Issue #17](https://github.com/luontola/retrolambda/issues/17))
448448

449449
### Retrolambda 1.2.1 (2014-05-04)
450450

451451
- Fixed the Retrolambda Maven plugin not using the project's classpath
452-
([Issue #16](https://github.com/orfjackal/retrolambda/issues/16))
452+
([Issue #16](https://github.com/luontola/retrolambda/issues/16))
453453
- Maven plugin: save `retrolambda.jar` under `target/retrolambda/`
454454
- Suppress false warning about class initializer methods on interfaces
455455

@@ -462,23 +462,23 @@ Version History
462462

463463
- Removes from interfaces bridge methods which were generated by JDK 8 e.g.
464464
when an interface overrides a method and refines its return type
465-
([Issue #13](https://github.com/orfjackal/retrolambda/issues/13))
465+
([Issue #13](https://github.com/luontola/retrolambda/issues/13))
466466

467467
### Retrolambda 1.1.3 (2014-03-25)
468468

469469
- Fixed incompatibility with the Eclipse JDT compiler, version Kepler SR2
470470
with the Java 8 support patch 1.0.0.v20140317-1959
471-
([Issue #12](https://github.com/orfjackal/retrolambda/issues/12))
471+
([Issue #12](https://github.com/luontola/retrolambda/issues/12))
472472

473473
### Retrolambda 1.1.2 (2014-01-08)
474474

475475
- Updated to work with JDK 8 Early Access Build b121 (2013-12-19)
476-
([Issue #3](https://github.com/orfjackal/retrolambda/issues/3))
476+
([Issue #3](https://github.com/luontola/retrolambda/issues/3))
477477

478478
### Retrolambda 1.1.1 (2013-11-27)
479479

480480
- Show help if the `-javaagent` parameter is missing
481-
([Issue #2](https://github.com/orfjackal/retrolambda/issues/2))
481+
([Issue #2](https://github.com/luontola/retrolambda/issues/2))
482482

483483
### Retrolambda 1.1.0 (2013-07-25)
484484

parent/pom.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<packaging>pom</packaging>
1717

1818
<description>Backport of Java 8 lambda expressions to Java 7</description>
19-
<url>https://github.com/orfjackal/retrolambda</url>
19+
<url>https://github.com/luontola/retrolambda</url>
2020
<inceptionYear>2013</inceptionYear>
2121

2222
<licenses>
@@ -28,15 +28,14 @@
2828

2929
<developers>
3030
<developer>
31-
<id>orfjackal</id>
3231
<name>Esko Luontola</name>
33-
<url>http://www.orfjackal.net/</url>
32+
<url>http://luontola.fi</url>
3433
</developer>
3534
</developers>
3635

3736
<scm>
38-
<connection>scm:git:git://github.com/orfjackal/retrolambda.git</connection>
39-
<url>https://github.com/orfjackal/retrolambda</url>
37+
<connection>scm:git:git://github.com/luontola/retrolambda.git</connection>
38+
<url>https://github.com/luontola/retrolambda</url>
4039
</scm>
4140

4241
<properties>

retrolambda-maven-plugin/src/main/java/net/orfjackal/retrolambda/maven/ProcessClassesMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ abstract class ProcessClassesMojo extends AbstractMojo {
6060
* The Java version targeted by the bytecode processing. Possible values are
6161
* 1.5, 1.6, 1.7 and 1.8. After processing the classes will be compatible
6262
* with the target JVM provided the known limitations are considered. See
63-
* <a href="https://github.com/orfjackal/retrolambda">project documentation</a>
63+
* <a href="https://github.com/luontola/retrolambda">project documentation</a>
6464
* for more details.
6565
*
6666
* @since 1.2.0

retrolambda/src/main/java/net/orfjackal/retrolambda/SystemPropertiesConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public String getHelp() {
217217
"\n" +
218218
"Retrolambda takes Java 8 classes and backports lambda expressions and\n" +
219219
"some other language features to work on Java 7, 6 or 5.\n" +
220-
"Web site: https://github.com/orfjackal/retrolambda\n" +
220+
"Web site: https://github.com/luontola/retrolambda\n" +
221221
"\n" +
222222
"Copyright (c) 2013-2017 Esko Luontola and other Retrolambda contributors\n" +
223223
"This software is released under the Apache License 2.0.\n" +

0 commit comments

Comments
 (0)