Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.jphp-compiler:develnext:'
}
dependencies {
implementation("com.github.jphp-compiler:develnext:")
}
<dependency>
<groupId>com.github.jphp-compiler</groupId>
<artifactId>develnext</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.jphp-compiler" % "develnext" % ""
:dependencies [[com.github.jphp-compiler/develnext ""]]
GUI and IDE for php based on jphp, for beginners only.
Dependencies
Install JDK, clone repo and use the following console commands:
cd /path/to/repo
// fetch all submodules (jphp, richtextfx, etc.)
git submodule update --init
// install rich text fx
cd 3rd-party/RichTextFX
./gradlew install
// install jphp
cd ../3rd-party/jphp
./gradlew install
// install wizard-framework
cd ../3rd-party/wizard-framework
./gradlew npmInstall installGulp install
cd ../../
// for windows
./gradlew distIdeWindows
// for linux
./gradlew distIdeLinux
You can find the builded distrubutive in develnext/build/install/develnext
.
Under MPL 2.0 (https://www.mozilla.org/MPL/2.0/)
Установите JDK (Java), склонируйте репозиторий и используйте следующие консольные команды:
cd /path/to/repo
// fetch all submodules (jphp, richtextfx, etc.)
git submodule update --init
// install rich text fx
cd 3rd-party/RichTextFX
gradlew install
// install jphp
cd ../3rd-party/jphp
gradlew install
// install wizard-framework for web
cd ../3rd-party/wizard-framework
gradlew npmInstall installGulp install
cd ../../
// for windows
gradlew distIdeWindows
// for linux
gradlew distIdeLinux
Найти собранный дистрибутив можно будет в папке develnext/build/install/develnext
.
Если проект не собирается, значит на текущем этапе в develnext используется еще неопубликованная версия jphp,
поэтому ее нужно собрать вручную с нужной ветки (см. версию), выполнив команду gradlew install
в папке исходников jphp.
Under MPL 2.0 (https://www.mozilla.org/MPL/2.0/)