Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2017-12-21 13:00:02 +0000
committerMatthias Sohn2017-12-21 13:00:02 +0000
commit24a283176bb7e64ad69e7afcbade73a9b00f8012 (patch)
tree67813fa16fe64ded6bea26bc6d4e5ffd383ce2d0 /pom.xml
parentc9db3176d8eca96627bc9487257a69cd884300b1 (diff)
downloadjgit-24a283176bb7e64ad69e7afcbade73a9b00f8012.tar.gz
jgit-24a283176bb7e64ad69e7afcbade73a9b00f8012.tar.xz
jgit-24a283176bb7e64ad69e7afcbade73a9b00f8012.zip
Remove maven profile jgit.java8
This profile isn't needed any longer since we require Java 8 as minimum version. Change-Id: I8a37eaf874473ff4004b9c074a810dddebde54c8 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml28
1 files changed, 0 insertions, 28 deletions
diff --git a/pom.xml b/pom.xml
index d3db5713e9..c55a95a2d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -725,34 +725,6 @@
<profiles>
<profile>
- <id>jgit.java8</id>
- <activation>
- <jdk>[1.8,)</jdk>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <additionalparam>-Xdoclint:-missing</additionalparam>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <additionalparam>-Xdoclint:-missing</additionalparam>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- </profile>
- <profile>
<id>static-checks</id>
<build>
<plugins>

Back to the top