You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sis.apache.org by js...@apache.org on 2020/04/28 07:07:12 UTC

[sis] branch feat/javafx-on-11 updated (8f5d781 -> 91fd230)

This is an automated email from the ASF dual-hosted git repository.

jsorel pushed a change to branch feat/javafx-on-11
in repository https://gitbox.apache.org/repos/asf/sis.git.


 discard 8f5d781  chore(*): remove special profil for javafx
 discard 89a6262  feat(JavaFx): build for java 11, add maven dependencies
     add 38ab0ef  Make CoordinateFormat.parse(…) consistent with CoordinateFormat.format(…) regarding direction and accuracy information.
     add e474c3d  Replace a NullPointerException (at `build()` invocation time) by a more explicit exception thrown earlier.
     add f9f9e2b  Add missing serial version.
     add b44873a  Initial implementation of Cassini-Soldner projection written from EPSG formulas. This commit provides a direct, non-optimized implementation with almost verbatim copy of formulas published in:
     new a507256  feat(JavaFx): build for java 11, add maven dependencies
     new 91fd230  chore(*): remove special profil for javafx

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8f5d781)
            \
             N -- N -- N   refs/heads/feat/javafx-on-11 (91fd230)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/sis/coverage/grid/GridDerivation.java   |   1 +
 .../org/apache/sis/geometry/CoordinateFormat.java  | 259 +++++++++++++++------
 .../{Polyconic.java => CassiniSoldner.java}        |  68 +++---
 .../operation/projection/CassiniSoldner.java       | 176 ++++++++++++++
 ...g.opengis.referencing.operation.OperationMethod |   1 +
 .../apache/sis/geometry/CoordinateFormatTest.java  |  45 +++-
 .../referencing/provider/ProvidersTest.java        |   1 +
 .../java/org/apache/sis/measure/UnitFormat.java    |   2 +-
 8 files changed, 448 insertions(+), 105 deletions(-)
 copy core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/{Polyconic.java => CassiniSoldner.java} (74%)
 create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/projection/CassiniSoldner.java


[sis] 01/02: feat(JavaFx): build for java 11, add maven dependencies

Posted by js...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jsorel pushed a commit to branch feat/javafx-on-11
in repository https://gitbox.apache.org/repos/asf/sis.git

commit a507256d4316ca51812fa37821a5b0a9b282c57e
Author: jsorel <jo...@geomatys.com>
AuthorDate: Fri Apr 24 16:01:54 2020 +0200

    feat(JavaFx): build for java 11, add maven dependencies
---
 application/sis-javafx/pom.xml | 33 ++++++++++++++++++++++++++++-----
 1 file changed, 28 insertions(+), 5 deletions(-)

diff --git a/application/sis-javafx/pom.xml b/application/sis-javafx/pom.xml
index d64e62d..cdcddd9 100644
--- a/application/sis-javafx/pom.xml
+++ b/application/sis-javafx/pom.xml
@@ -92,11 +92,8 @@
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <release>13</release>
-          <compilerArgs>
-            <arg>--module-path</arg> <arg>${env.PATH_TO_FX}</arg>
-            <arg>--add-modules</arg> <arg>javafx.graphics,javafx.controls</arg>
-          </compilerArgs>
+			<!-- 11 is the minimum supported by javafx 13.0.2 -->
+          <release>11</release>
         </configuration>
       </plugin>
 
@@ -166,6 +163,32 @@
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.openjfx</groupId>
+      <artifactId>javafx-graphics</artifactId>
+	<version>13.0.2</version>
+	</dependency>
+	<dependency>
+      <groupId>org.openjfx</groupId>
+      <artifactId>javafx-controls</artifactId>
+	<version>13.0.2</version>
+	</dependency>
+	<dependency>
+      <groupId>org.openjfx</groupId>
+      <artifactId>javafx-swing</artifactId>
+	<version>13.0.2</version>
+	</dependency>
+	<dependency>
+      <groupId>org.openjfx</groupId>
+      <artifactId>javafx-fxml</artifactId>
+	<version>13.0.2</version>
+	</dependency>
+	<dependency>
+      <groupId>org.openjfx</groupId>
+      <artifactId>javafx-web</artifactId>
+      <version>13.0.2</version>
+    </dependency>
+
   </dependencies>
 
 </project>


[sis] 02/02: chore(*): remove special profil for javafx

Posted by js...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jsorel pushed a commit to branch feat/javafx-on-11
in repository https://gitbox.apache.org/repos/asf/sis.git

commit 91fd230d95a6529e1c87560c590eea79ecffb25d
Author: jsorel <jo...@geomatys.com>
AuthorDate: Mon Apr 27 11:50:09 2020 +0200

    chore(*): remove special profil for javafx
---
 application/pom.xml | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/application/pom.xml b/application/pom.xml
index a6ef1c1..b866cd8 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -120,17 +120,6 @@
     <module>sis-console</module>
     <module>sis-webapp</module>
     <module>sis-openoffice</module>
+    <module>sis-javafx</module>
   </modules>
-  <profiles>
-    <profile>
-      <activation>
-        <property>
-          <name>env.PATH_TO_FX</name>
-        </property>
-      </activation>
-      <modules>
-        <module>sis-javafx</module>
-      </modules>
-    </profile>
-  </profiles>
 </project>