File tree 3 files changed +11
-2
lines changed
retrolambda-maven-plugin/src/main/java/net/orfjackal/retrolambda/maven
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ the lambda accesses an instance variable).
140
140
Version History
141
141
---------------
142
142
143
+ ### Upcoming
144
+
145
+ - Fixed the Retrolambda Maven plugin not using the project's classpath
146
+ ([ Issue #16 ] ( https://github.com/orfjackal/retrolambda/issues/16 ) )
147
+
143
148
### Retrolambda 1.2.0 (2014-05-02)
144
149
145
150
- Maven plugin for running Retrolambda (by Dave Moten)
Original file line number Diff line number Diff line change 10
10
* Processes main (non-test) classes compiled with Java 8 so that they will be
11
11
* compatible with Java 5, 6 or 7 runtime.
12
12
*/
13
- @ Mojo (name = "process-main" , defaultPhase = LifecyclePhase .PROCESS_CLASSES )
13
+ @ Mojo (name = "process-main" ,
14
+ defaultPhase = LifecyclePhase .PROCESS_CLASSES ,
15
+ requiresDependencyResolution = ResolutionScope .COMPILE )
14
16
public class ProcessMainClassesMojo extends ProcessClassesMojo {
15
17
16
18
public ProcessMainClassesMojo () {
Original file line number Diff line number Diff line change 10
10
* Processes test classes compiled with Java 8 so that they will be compatible with
11
11
* Java 5, 6 or 7 runtime.
12
12
*/
13
- @ Mojo (name = "process-test" , defaultPhase = LifecyclePhase .PROCESS_TEST_CLASSES )
13
+ @ Mojo (name = "process-test" ,
14
+ defaultPhase = LifecyclePhase .PROCESS_TEST_CLASSES ,
15
+ requiresDependencyResolution = ResolutionScope .TEST )
14
16
public class ProcessTestClassesMojo extends ProcessClassesMojo {
15
17
16
18
public ProcessTestClassesMojo () {
You can’t perform that action at this time.
0 commit comments