Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source option 6 is no longer supported. Use 7 or later #22

Open
maximilianotaverna opened this issue Feb 4, 2022 · 6 comments
Open

Comments

@maximilianotaverna
Copy link

[INFO] Compiling 220 source files to /Applications/webfont-generator-master/vendor/sfntly/java/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] Source option 6 is no longer supported. Use 7 or later.
[ERROR] Target option 6 is no longer supported. Use 7 or later.
[INFO] 2 errors
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:00 min
[INFO] Finished at: 2022-02-04T11:22:44+11:00

@jamesbebbington
Copy link

Yeah, I'm receiving the same error when running setup.

webfont-generator v1.3.2
macOS 12.4

@bdusell
Copy link
Owner

bdusell commented May 30, 2022

Ah, software rot. It sounds like newer versions of javac are dropping support the version of Java that sfntly was written in. What version of Java are you using?

@jamesbebbington
Copy link

Thanks for getting back to me, I managed to find another solution to my problem, but FTR:

$ java -showversion
java version "1.8.0_261"
Java(TM) SE Runtime Environment (build 1.8.0_261-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.261-b12, mixed mode)

@myspoonistoobig
Copy link

Thanks for getting back to me, I managed to find another solution to my problem, but FTR:

$ java -showversion
java version "1.8.0_261"
Java(TM) SE Runtime Environment (build 1.8.0_261-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.261-b12, mixed mode)

What was the solution you found? I'm running into the same thing and there are no answers here.

@jamesbebbington
Copy link

Nothing that helpful for others I'm afraid, I was just looking to locally test out a font on a web site, so I just used the .ttf file. The project got shelved so I didn't have to cross the webfont bridge in the end.

@Nathan-Yorio
Copy link

Nathan-Yorio commented Feb 14, 2023

FWIW I was able to get it to work by simply changing the compiler version in the POM.XML for sfntly

/vendor/sfntly/java/pom.xml

Changed:
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>

To:
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>

Reran setup and the compile section of the script was able to compile sfntly

Additionally I guess if you wanted to hack in a solution you could drop in a new function for setup to do something like this after fetch_sfntly()

force_new_compiler() {
  log 'Forcing new compiler version..'
  (
    cd "$SFNTLY_DIR"/java &&
    sed -i -e "s/source>.*/source>1.7<\/maven.compiler.source>/g" pom.xml &&
    sed -i -e "s/target>.*/target>1.7<\/maven.compiler.target>/g" pom.xml
  )
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants