|
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <artifactId>itext-xtra</artifactId> |
13 | | - <version>5.5.13.3</version> |
| 13 | + <version>5.5.13.4</version> |
14 | 14 |
|
15 | 15 | <name>iText Xtra</name> |
16 | 16 | <description>iText Xtra, part of iText a Free Java-PDF library</description> |
|
63 | 63 | </ciManagement> |
64 | 64 |
|
65 | 65 | <properties> |
| 66 | + <!-- itext-xtra depends on java 1.8 because |
| 67 | + earliest published stable version of common-imaging requires java8 --> |
| 68 | + <xtra.java.version>1.8</xtra.java.version> |
66 | 69 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
67 | 70 | <argLine>-Xmx128m</argLine> |
68 | 71 | <sonar.language>java</sonar.language> |
|
80 | 83 | <dependency> |
81 | 84 | <groupId>org.apache.commons</groupId> |
82 | 85 | <artifactId>commons-imaging</artifactId> |
83 | | - <version>1.0-SNAPSHOT</version> |
| 86 | + <version>1.0-alpha1</version> |
84 | 87 | </dependency> |
85 | 88 | <dependency> |
86 | 89 | <groupId>commons-io</groupId> |
|
111 | 114 |
|
112 | 115 | <build> |
113 | 116 | <plugins> |
| 117 | + <plugin> |
| 118 | + <groupId>org.apache.maven.plugins</groupId> |
| 119 | + <artifactId>maven-compiler-plugin</artifactId> |
| 120 | + <version>3.10.1</version> |
| 121 | + <configuration> |
| 122 | + <source>${xtra.java.version}</source> |
| 123 | + <target>${xtra.java.version}</target> |
| 124 | + </configuration> |
| 125 | + </plugin> |
114 | 126 | <plugin> |
115 | 127 | <groupId>external.atlassian.jgitflow</groupId> |
116 | 128 | <artifactId>jgitflow-maven-plugin</artifactId> |
|
227 | 239 | </dependencies> |
228 | 240 | </profile> |
229 | 241 | <!-- END: Specific to mapping unit tests and covered code --> |
230 | | - |
231 | | - <profile> |
232 | | - <id>compileWithLegacyJDK</id> |
233 | | - <!-- |
234 | | - NOTE |
235 | | - Make sure to set the environment variable JAVA7_HOME |
236 | | - to your JDK 1.7 HOME when using this profile. |
237 | | - --> |
238 | | - <properties> |
239 | | - <java.version>1.7</java.version> |
240 | | - <java.home>${env.JAVA7_HOME}</java.home> |
241 | | - <java.libs>${java.home}/jre/lib</java.libs> |
242 | | - <java.bootclasspath>${java.libs}/rt.jar${path.separator}${java.libs}/jce.jar</java.bootclasspath> |
243 | | - </properties> |
244 | | - <build> |
245 | | - <plugins> |
246 | | - <plugin> |
247 | | - <groupId>org.apache.maven.plugins</groupId> |
248 | | - <artifactId>maven-compiler-plugin</artifactId> |
249 | | - <version>3.6.1</version> |
250 | | - <configuration> |
251 | | - <source>${java.version}</source> |
252 | | - <target>${java.version}</target> |
253 | | - <compilerArguments> |
254 | | - <bootclasspath>${java.bootclasspath}</bootclasspath> |
255 | | - </compilerArguments> |
256 | | - <compilerVersion>${java.version}</compilerVersion> |
257 | | - <fork>true</fork> |
258 | | - <executable>${java.home}/bin/javac</executable> |
259 | | - </configuration> |
260 | | - </plugin> |
261 | | - </plugins> |
262 | | - </build> |
263 | | - </profile> |
264 | | - |
265 | 242 | </profiles> |
266 | 243 |
|
267 | 244 | </project> |
0 commit comments