diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-27 21:31:26 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-27 21:31:26 +0100 |
commit | f232e9f8b89395d6a1c596faa4f8abec4fa8f2f9 (patch) | |
tree | 4cfc39a4d6a14e1120b4fe63330e012d65277b61 /website/templates/setup/ecj-in-maven-pom-example.xml | |
parent | 7993aa20cd20cdc030f90ee9f33c1b74c023d7ca (diff) | |
download | lombok-f232e9f8b89395d6a1c596faa4f8abec4fa8f2f9.tar.gz lombok-f232e9f8b89395d6a1c596faa4f8abec4fa8f2f9.tar.bz2 lombok-f232e9f8b89395d6a1c596faa4f8abec4fa8f2f9.zip |
[website] ecj instructions were outdated and the pom link was broken
Diffstat (limited to 'website/templates/setup/ecj-in-maven-pom-example.xml')
-rw-r--r-- | website/templates/setup/ecj-in-maven-pom-example.xml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/website/templates/setup/ecj-in-maven-pom-example.xml b/website/templates/setup/ecj-in-maven-pom-example.xml new file mode 100644 index 00000000..3bb10722 --- /dev/null +++ b/website/templates/setup/ecj-in-maven-pom-example.xml @@ -0,0 +1,81 @@ +<#noparse> +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.projectlombok</groupId> + <artifactId>eclipse-compiler-test</artifactId> + <version>1.0-SNAPSHOT</version> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> +</#noparse> + <lombok.version>${version}</lombok.version> +<#noparse> + </properties> + + <dependencies> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${lombok.version}</version> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <compilerId>eclipse</compilerId> + <release>11</release> + </configuration> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-compiler-eclipse</artifactId> + <version>2.8.6</version> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${lombok.version}</version> + </dependency> + </dependencies> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.1.1</version> + <executions> + <execution> + <id>get-lombok</id> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${lombok.version}</version> + <type>jar</type> + <outputDirectory>${project.build.directory}</outputDirectory> + <destFileName>lombok.jar</destFileName> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </pluginManagement> + </build> +</project> +</#noparse> |