Skip to content

Commit

Permalink
Merge pull request #270 from starsareintherose/master
Browse files Browse the repository at this point in the history
fix: build under 1.8
  • Loading branch information
chrisala authored Jul 31, 2024
2 parents 3188f6a + 96836a5 commit 63f63cd
Show file tree
Hide file tree
Showing 8 changed files with 78 additions and 56 deletions.
14 changes: 7 additions & 7 deletions confor/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>confor</artifactId>
<version>1.0.3-SNAPSHOT</version>
<name>CONFOR</name>

<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>
<plugins>
Expand Down Expand Up @@ -77,8 +77,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -252,4 +252,4 @@
</build>
</profile>
</profiles>
</project>
</project>
14 changes: 7 additions & 7 deletions delfor/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>delfor</artifactId>
Expand All @@ -9,9 +9,9 @@


<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>

Expand All @@ -21,8 +21,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -193,4 +193,4 @@
</build>
</profile>
</profiles>
</project>
</project>
16 changes: 8 additions & 8 deletions delta-editor/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>delta-editor</artifactId>
Expand All @@ -9,18 +9,18 @@
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<url>https://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
<id>shell-sourceforge-jp</id>
<name>maven repository on sourceforge.jp shell server</name>
<url>http://jfontchooser.sourceforge.jp/repository/say/swing/jfontchooser</url>
<url>https://jfontchooser.sourceforge.jp/repository/say/swing/jfontchooser</url>
</repository>
</repositories>

<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
</scm>
<build>
Expand Down Expand Up @@ -75,8 +75,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -356,4 +356,4 @@
</build>
</profile>
</profiles>
</project>
</project>
14 changes: 7 additions & 7 deletions dist/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>dist</artifactId>
Expand All @@ -9,9 +9,9 @@


<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>

Expand All @@ -21,8 +21,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -186,4 +186,4 @@
</build>
</profile>
</profiles>
</project>
</project>
29 changes: 20 additions & 9 deletions intkey/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>delta-intkey</groupId>
<artifactId>delta-intkey</artifactId>
Expand All @@ -9,25 +9,25 @@
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<url>https://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
<id>shell-sourceforge-jp</id>
<name>maven repository on sourceforge.jp shell server</name>
<url>http://jfontchooser.sourceforge.jp/repository/say/swing/jfontchooser</url>
<url>https://jfontchooser.sourceforge.jp/repository/say/swing/jfontchooser</url>
</repository>
<repository>
<id>ala-repository</id>
<name>ala-repository</name>
<url>http://nexus.ala.org.au/content/groups/public/</url>
<url>https://nexus.ala.org.au/content/groups/public/</url>
</repository>
</repositories>

<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>
<resources>
Expand Down Expand Up @@ -82,8 +82,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -201,6 +201,10 @@
</pluginManagement>
</build>

<properties>
<local.jnlp.path>/usr/share/icedtea-web/javaws.jar</local.jnlp.path>
</properties>

<dependencies>
<dependency>
<groupId>au.org.ala.delta</groupId>
Expand Down Expand Up @@ -253,6 +257,13 @@
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.jnlp</groupId>
<artifactId>jnlp</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${local.jnlp.path}</systemPath>
</dependency>
<dependency>
<groupId>com.l2fprod.common</groupId>
<artifactId>l2fprod-common-fontchooser</artifactId>
Expand Down
12 changes: 6 additions & 6 deletions key/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>key</artifactId>
<version>1.0.3-SNAPSHOT</version>
<name>KEY</name>

<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>
<plugins>
Expand Down Expand Up @@ -54,8 +54,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>open-delta</artifactId>
<version>1.0.3-SNAPSHOT</version>
<name>Open DELTA suite</name>
<packaging>pom</packaging>
<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>

<modules>
Expand Down
27 changes: 19 additions & 8 deletions ui-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.ala.delta</groupId>
<artifactId>delta-ui-common</artifactId>
Expand All @@ -10,16 +10,16 @@
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<url>https://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>


<scm>
<connection>scm:svn:http://open-delta.googlecode.com/svn/trunk/</connection>
<connection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://open-delta.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/open-delta/</url>
<url>https://code.google.com/p/open-delta/</url>
</scm>
<build>

Expand All @@ -40,8 +40,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -140,6 +140,10 @@
</pluginManagement>
</build>

<properties>
<local.jnlp.path>/usr/share/icedtea-web/javaws.jar</local.jnlp.path>
</properties>

<dependencies>
<dependency>
<groupId>au.org.ala.delta</groupId>
Expand All @@ -157,6 +161,13 @@
<version>2.0.05</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>javax.jnlp</groupId>
<artifactId>jnlp</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${local.jnlp.path}</systemPath>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
Expand Down Expand Up @@ -212,4 +223,4 @@
<url>${ala.repository.url}</url>
</snapshotRepository>
</distributionManagement>
</project>
</project>

0 comments on commit 63f63cd

Please sign in to comment.