jphp-group/develnext


JavaFX and IDE for JPHP (only russian localization, english - in progress) http://develnext.org

Download


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 ""]]
        
        

Readme


DevelNext

GUI and IDE for php based on jphp, for beginners only.

DevelNext Logo


Dependencies

  • jphp 0.9.+ (not published yet, you can build it from the jphp sources!)
  • java 1.8+ (jre)
  • gradle 2.4+
  • launch4j 3.8

How to get the DevelNext IDE distrubutive?

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.

License

Under MPL 2.0 (https://www.mozilla.org/MPL/2.0/)

Как получить дистрибутив DevelNext?

Установите 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/)