aboutsummaryrefslogtreecommitdiff
path: root/docker/maven/files/jdk-8/pom.xml
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2020-01-08 01:20:27 +0100
committerRoel Spilker <r.spilker@gmail.com>2020-01-08 01:32:24 +0100
commita4345d11453fc7d80e7814c27605ce1a5caa23f8 (patch)
treed72ddb8d12c4adc2d78f3d06408c3f7ec486dd01 /docker/maven/files/jdk-8/pom.xml
parent20952446671d78533e3662bfa8206e3801c70b54 (diff)
downloadlombok-a4345d11453fc7d80e7814c27605ce1a5caa23f8.tar.gz
lombok-a4345d11453fc7d80e7814c27605ce1a5caa23f8.tar.bz2
lombok-a4345d11453fc7d80e7814c27605ce1a5caa23f8.zip
new versions for docker
Diffstat (limited to 'docker/maven/files/jdk-8/pom.xml')
-rw-r--r--docker/maven/files/jdk-8/pom.xml44
1 files changed, 0 insertions, 44 deletions
diff --git a/docker/maven/files/jdk-8/pom.xml b/docker/maven/files/jdk-8/pom.xml
deleted file mode 100644
index 87c4a6a8..00000000
--- a/docker/maven/files/jdk-8/pom.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<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>com.example</groupId>
- <artifactId>lombok-jdk-${env.JDK_VERSION}</artifactId>
- <version>1.0-SNAPSHOT</version>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <java.version>1.8</java.version>
- </properties>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <showDeprecation>true</showDeprecation>
- <showWarnings>true</showWarnings>
- <fork>true</fork>
- <compilerargs>
- <arg>-Werror</arg>
- <arg>-Xlint:all</arg>
- </compilerargs>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.2.3</version>
- <scope>system</scope>
- <systemPath>/workspace/lombok.jar</systemPath>
- </dependency>
- </dependencies>
-
-</project> \ No newline at end of file