Skip to content

Commit

Permalink
Issue #32: Remove jdk8 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
ottlinger committed Apr 19, 2018
1 parent 4c61275 commit 5a9a60e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 35 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: java
jdk:
- oraclejdk8
- oraclejdk9
addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ mvn clean install -Plive-demo
* run the executable jar
```
$ mvn clean install
$ java -jar target/fotorenamer-1.1.3-executable.jar
$ java -jar target/fotorenamer-2.0.0-executable.jar
```
* start a deprecated stable version [(0.1.3-SNAPSHOT)](http://www.aiki-it.de/sw/ixus/bildbearbeiter.jnlp) via Webstart

Expand Down
46 changes: 13 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ limitations under the License.
<groupId>de.aikiit</groupId>
<artifactId>fotorenamer</artifactId>
<packaging>jar</packaging>
<version>2.0.0</version>
<version>2.0.0-SNAPSHOT</version>
<name>FotoRenamer - rename your photos automatically</name>
<description>Helper to rename your photos based on EXIF metadata extracted from the image itself.</description>
<url>https://github.com/ottlinger/fotorenamer/</url>
Expand Down Expand Up @@ -113,6 +113,18 @@ limitations under the License.
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<!-- select non-aggregate reports -->
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
Expand Down Expand Up @@ -194,14 +206,6 @@ limitations under the License.
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
<!-- 20090805 disabled due to a bug in Cobertura leading to CI error mails, http://jira.codehaus.org/browse/MCOBERTURA-73 -->
<!-- cobertura plugin
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
</plugin>
-->
<!-- catch code tags -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -533,30 +537,6 @@ limitations under the License.
<inputEncoding>UTF-8</inputEncoding>
</configuration>
</plugin>
<!-- instrumentalization for cobertura -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<!-- configuration>
<instrumentation>
<ignores>
<ignore>com.example.boringcode.*</ignore>
</ignores>
<excludes>
<exclude>com/example/dullcode/**/*.class</exclude>
<exclude>com/example/**/*Test.class</exclude>
</excludes>
</instrumentation>
</configuration-->
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Plugin for JNLP creation
mvn package
Expand Down

0 comments on commit 5a9a60e

Please sign in to comment.