Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 023b5bc

Browse files
committed
Closing feature #1922 : Adding support for OpenOffice 3.3
1 parent a109b67 commit 023b5bc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependencies>
2525
<dependency>
2626
<groupId>junit</groupId>
27-
<artifactId>junit</artifactId>
27+
<artifactId>junit-dep</artifactId>
2828
</dependency>
2929
<dependency>
3030
<groupId>commons-codec</groupId>
@@ -102,6 +102,9 @@
102102
<goals>
103103
<goal>verify</goal>
104104
</goals>
105+
<configuration>
106+
<archiveDirectory>${project.build.directory}/dependency</archiveDirectory>
107+
</configuration>
105108
</execution>
106109
</executions>
107110
<configuration>

src/main/java/com/silverpeas/openoffice/windows/WindowsOpenOfficeFinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class WindowsOpenOfficeFinder extends OpenOfficeFinder {
3939

4040
static final Logger logger = Logger.getLogger(WindowsOpenOfficeFinder.class.getName());
41-
private static final String[] VERSIONS = new String[] { "3.2", "3.1", "3.0", "2.4",
41+
private static final String[] VERSIONS = new String[] {"3.3", "3.2", "3.1", "3.0", "2.4",
4242
"2.3" };
4343
private static final String GLOBAL_OPEN_OFFICE_FOLDER =
4444
"\"HKEY_LOCAL_MACHINE\\SOFTWARE\\OpenOffice.org\\OpenOffice.org\\";

0 commit comments

Comments
 (0)