aboutsummaryrefslogtreecommitdiff
path: root/website/resources/files
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2018-09-10 23:07:15 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-09-10 23:07:40 +0200
commit52aa55ed550d283166b837eda7b1534f4385da9a (patch)
tree28334f0765eb71feda6cffbd5f0fd9747144be0b /website/resources/files
parent0c23659103c169bf42837801f961f47bf272060f (diff)
downloadlombok-52aa55ed550d283166b837eda7b1534f4385da9a.tar.gz
lombok-52aa55ed550d283166b837eda7b1534f4385da9a.tar.bz2
lombok-52aa55ed550d283166b837eda7b1534f4385da9a.zip
update website documentation
Diffstat (limited to 'website/resources/files')
-rw-r--r--website/resources/files/pom.xml78
1 files changed, 0 insertions, 78 deletions
diff --git a/website/resources/files/pom.xml b/website/resources/files/pom.xml
deleted file mode 100644
index 6562afe8..00000000
--- a/website/resources/files/pom.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<?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>
- <lombok.version>1.16.8</lombok.version>
- </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.5.1</version>
- <configuration>
- <compilerId>eclipse</compilerId>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-compiler-eclipse</artifactId>
- <version>2.7</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>2.10</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>