Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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

Newbie Spellweaver
Joined
Mar 18, 2022
Messages
68
Reaction score
18
Hello,

iam haveing problems compiling 3.9 AL Source, from this thread:
https://forum.ragezone.com/f587/release-al-3-9-source-936746/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>
 
Newbie Spellweaver
Joined
Dec 23, 2013
Messages
41
Reaction score
16
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*
 
Upvote 0
Newbie Spellweaver
Joined
Mar 18, 2022
Messages
68
Reaction score
18
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.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 18, 2022
Messages
68
Reaction score
18
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?


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:
Upvote 0
Back
Top