conveyal / analyst-server

DEPRECATED; see https://github.com/conveyal/analysis-ui
MIT License
37 stars 6 forks source link

Maven Build Failure with com.sun.javafx.geom #220

Closed radumas closed 8 years ago

radumas commented 8 years ago

Running maven 3.3.3

Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T07:57:37-04:00)
Maven home: /usr/local/apache-maven/apache-maven-3.3.3
Java version: 1.8.0_45-internal, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-8-openjdk-amd64/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "3.13.0-52-generic", arch: "amd64", family: "unix"

I get the following error on the latest clone.

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building analyst-server 0.7.16-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ analyst-server ---
[INFO] Deleting /home/user/git/analyst-server/target
[INFO] 
[INFO] --- git-commit-id-plugin:2.1.15:revision (default) @ analyst-server ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ analyst-server ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 203 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.2:compile (default-compile) @ analyst-server ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 67 source files to /home/user/git/analyst-server/target/classes
[INFO] /home/user/git/analyst-server/src/main/java/com/conveyal/analyst/server/AnalystMain.java: Some input files use or override a deprecated API.
[INFO] /home/user/git/analyst-server/src/main/java/com/conveyal/analyst/server/AnalystMain.java: Recompile with -Xlint:deprecation for details.
[INFO] /home/user/git/analyst-server/src/main/java/models/User.java: Some input files use unchecked or unsafe operations.
[INFO] /home/user/git/analyst-server/src/main/java/models/User.java: Recompile with -Xlint:unchecked for details.
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /home/user/git/analyst-server/src/main/java/com/conveyal/analyst/server/controllers/Gis.java:[8,27] package com.sun.javafx.geom does not exist
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.591 s
[INFO] Finished at: 2015-09-23T15:24:25-04:00
[INFO] Final Memory: 40M/290M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project analyst-server: Compilation failure
[ERROR] /home/user/git/analyst-server/src/main/java/com/conveyal/analyst/server/controllers/Gis.java:[8,27] package com.sun.javafx.geom does not exist
mattwigway commented 8 years ago

ah, that's an unused import that must have snuck in there somehow. Thanks for the report!

radumas commented 8 years ago

Build success! Thanks Matt.