-
Notifications
You must be signed in to change notification settings - Fork 44
Prepare lombok
Philipp Eichhorn edited this page May 12, 2012
·
3 revisions
- Clone lombok
- Merge the branch: yield-friendly_@Cleanup
- Merge the branch: Issue_19_@Data_needs_a_callSuper
I am not able to run @Action. If I provide Action1 implementation it works.
implementation private static Action1 println() { return new Action1() { public void apply(final Object o) { System.out.println(o); } };
pom : com.github.peichhorn lombok-pg 0.11.3
<dependency>
<groupId>com.github.peichhorn</groupId>
<artifactId>lombok-pg</artifactId>
<version>0.11.3</version>
<classifier>runtime</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>