AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

Results 1 to 5 of 5
  1. #1
    Member Thrarion is offline
    MemberRank
    Mar 2022 Join Date
    62Posts

    AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

    Hello,

    iam haveing problems compiling 3.9 AL Source, from this thread:
    https://forum.ragezone.com/f587/rele...46/index2.html

    maybe anyone can help?

    Compilation failureFailure executing javac, but could not parse the error:warning: [options] bootstrap class path not set in conjunction with -source 6error: Source option 6 is no longer supported. Use 7 or later.error: Target option 6 is no longer supported. Use 7 or later.



    pom.xml:

    <?xml version="1.0" encoding="utf-8"?><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"> <modelVersion>4.0.0</modelVersion> <groupId>org.aionlightning</groupId> <artifactId>al-chat</artifactId> <version>1.0</version> <name>Aion Lightning Chat Server</name> <packaging>jar</packaging> <scm> <developerConnection>scm:svn:https://subversion.assembla.com/svn/AionLightning/trunk/AL-Chat</developerConnection> <url>http://aion-lightning.org/</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <sourceDirectory>src</sourceDirectory> <finalName>AL-Chat</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> <compilerVersion>1.7</compilerVersion> <showWarnings>true</showWarnings> <debug>true</debug> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0</version> <configuration> <providerImplementations> <svn>javasvn</svn> </providerImplementations> <revisionOnScmFailure>undefined</revisionOnScmFailure> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> <configuration> <archive> <manifestEntries> <POMVersion>${project.version}</POMVersion> <Revision>${buildNumber}</Revision> <Date>${maven.build.timestamp}</Date> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>jboss-public-repository</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> </repository> <repository> <id>guice-maven</id> <name>guice maven</name> <url>http://guice-maven.googlecode.com/svn/trunk</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.aionlightning</groupId> <artifactId>al-commons</artifactId> <version>1.3</version> </dependency> <dependency>


  2. #2
    Enthusiast Alexis Sanchez is offline
    MemberRank
    Dec 2013 Join Date
    28Posts

    Re: AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

    Quote Originally Posted by Thrarion View Post
    Hello,

    maybe anyone can help?

    Compilation failureFailure executing javac, but could not parse the error:warning: [options] bootstrap class path not set in conjunction with -source 6error: Source option 6 is no longer supported. Use 7 or later.error: Target option 6 is no longer supported. Use 7 or later.
    You sure u have java 7 installed and set JAVA_HOME environment variable set as it needs? .
    Waiting for response*

  3. #3
    Member Thrarion is offline
    MemberRank
    Mar 2022 Join Date
    62Posts

    Re: AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

    yes ^^ tryed jdk7,6,8 + maven but didnt check on today. but i tomorow will continue on.
    also got now someone who is more familiar with it.

  4. #4
    "One day at a time" Robyson is offline
    [VIP] MemberRank
    Sep 2013 Join Date
    TzionLocation
    1,863Posts

    Re: AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

    Ready!! build.xml fixed, Ant added...

    Just add apache-maven-3.2.1, create the variables and ready!!

    You must use Java 1.7.

    Source code 3.5 https://mega.nz/file/lBAhTSza#X6vxXB...P55SIjmGOwSyik

    Last edited by Robyson; 23-03-22 at 01:24 PM.

  5. #5
    Member Thrarion is offline
    MemberRank
    Mar 2022 Join Date
    62Posts

    Re: AL-3.9 Compiling Source option 6 is no longer supported. Use 7 or later

    is this what i think @Robson26 ? =) and finally home now again 1 week homeoffice. lets do some more fixing

    yea this is all working and stuff, still your rev is far ahead...^^

    tbh its just missing geodata correction from zzort i guess, did you allready tryed that?
    https://github.com/zzsort/monono2/issues/1

    also trying to get that function in that is fixing ai behaviour. not easy.. seems like that 4.9 core is the farest developed overall, correct me pls if iam wrong. why 4.x, bloodmark made the game so worse :D

    and i guess that teleport bug where you can leap to a player/mob 50m from a far is also geodata related.

    do you know how to edit geodata? iam able to see it etc with the geoviewer and also able to extract from client, but iam looking for things like cryengine sdk i belive to open/edit it.
    Last edited by Thrarion; 28-03-22 at 07:51 AM.



Advertisement