b3c8c9248d68 — Quintillus 5 years ago
Forward-compatibility improvements.  Bump JaCoCo so it works with Java 5 through Java 14.  Add a -source option for the JavaDoc plugin; if you are compiling with JDK 14, then set it to 1.7, and it'll ignore the module system.  Also set the version to 1.2.1-SNAPSHOT.
1 files changed, 7 insertions(+), 4 deletions(-)

M pom.xml
M pom.xml +7 -4
@@ 4,7 4,7 @@ 
     
     <groupId>com.ajtjp</groupId>
     <artifactId>jimagereader</artifactId>
-    <version>1.2.0</version>
+    <version>1.2.1-SNAPSHOT</version>
     <packaging>jar</packaging>
     
     <name>JImageReader</name>

          
@@ 95,6 95,9 @@ 
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <version>3.1.1</version>
+                <configuration>
+                    <source>1.5</source>
+                </configuration>
                 <executions>
                     <execution>
                         <id>attach-javadocs</id>

          
@@ 108,7 111,7 @@ 
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-gpg-plugin</artifactId>
                 <version>1.6</version>
-                <executions>
+<!--                <executions>
                     <execution>
                         <id>sign-artifacts</id>
                         <phase>verify</phase>

          
@@ 116,7 119,7 @@ 
                             <goal>sign</goal>
                         </goals>
                     </execution>
-                </executions>
+                </executions>-->
             </plugin>
             
             

          
@@ 144,7 147,7 @@ 
             <plugin>
                 <groupId>org.jacoco</groupId>
                 <artifactId>jacoco-maven-plugin</artifactId>
-                <version>0.8.2</version>
+                <version>0.8.5</version>
                 <executions>
                     <execution>
                         <goals>