I'm using 8u45 and I don't have that issue.zhort wrote:use jdk 8 51, I had 8 45 & take error for tools.jar
The last changeset
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: The last changeset
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- Avanael92
- Advanced User
- Posts: 189
- Joined: Thu Aug 07, 2014 5:26 pm
- Location: Germany
Re: The last changeset
Just one thing to mention regarding your guide Zoey76.
In settings.gradle:
and in build.gradle:
In case you named your Datapack and Server in something else like "Servername_Datapack" and "Servername_Server". If you try to import Datapack first, that will result in an error saying L2J_Server could not be found. In this case it's necessary to change the name and path in settings.gradle and build.gradle correctly.
After that importing and compiling Datapack only with Core included went without problems.
In settings.gradle:
Code: Select all
include ':L2J_Server'
project(':L2J_Server').projectDir = new File(settingsDir, '../L2J_Server')
Code: Select all
compile files('../L2J_Server/dist/libs/mmocore.jar')
compile project(':L2J_Server')
After that importing and compiling Datapack only with Core included went without problems.
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: The last changeset
Okay, I'll include it, I want to try to find another way to do it. 

Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 
