Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 7 #13

Merged
merged 3 commits into from
Jan 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ build/
dist/
bin/
lib/
nbproject/
doc/API/
.classpath
nbproject/
nbbuild.xml
.nb-gradle/
.nb-gradle-properties
manifest.mf
*.iml
*.lock
*.log
devNull
server/META-INF/java/Java.inc
server/META-INF/java/JavaProxy.php
src/main/java/io/soluble/pjb/bridge/JavaInc.java
src/main/java/io/soluble/pjb/bridge/JavaProxy.java
src/main/java/io/soluble/pjb/bridge/LauncherUnix.java
Expand All @@ -25,7 +25,5 @@ src/main/java/io/soluble/pjb/bridge/LauncherWindows3.java
src/main/java/io/soluble/pjb/bridge/LauncherWindows4.java
src/main/resources/META-INF/java/Java.inc
src/main/resources/META-INF/java/JavaProxy.php
/.nb-gradle/
.nb-gradle-properties
src/main/webapp/java/Java.inc
src/main/webapp/java/JavaProxy.php
61 changes: 0 additions & 61 deletions CVS_RELEASE.sh

This file was deleted.

16 changes: 0 additions & 16 deletions RPM-GPG-KEY

This file was deleted.

28 changes: 16 additions & 12 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<target name="genClean" depends="genInit">
<delete file="${resDir}/META-INF/java/Java.inc"/>
<delete file="${resDir}/META-INF/java/JavaProxy.php"/>
<delete file="${webappDir}/java/Java.inc"/>
<delete file="${webappDir}/java/JavaProxy.php"/>
<delete file="${serverDir}/META-INF/java/Java.inc"/>
<delete file="${serverDir}/META-INF/java/JavaProxy.php"/>
<delete file="${pkgDir}/bridge/JavaInc.java"/>
<delete file="${pkgDir}/bridge/JavaProxy.java"/>
<delete file="${pkgDir}/bridge/LauncherUnix.java"/>
Expand All @@ -25,30 +29,30 @@
<target name="genJavaInc" depends="genInit">
<apply executable="${php_exec}" failonerror="true" dir="${serverDir}" parallel="true">
<arg value="${serverDir}/buildJavaInc.php"/>
<arg value="${resDir}/META-INF/java/Java.inc"/>
<arg value="META-INF/java/JavaBridge.inc"/>
<arg value="META-INF/java/Options.inc"/>
<arg value="META-INF/java/Client.inc"/>
<arg value="META-INF/java/GlobalRef.inc"/>
<arg value="META-INF/java/NativeParser.inc"/>
<arg value="META-INF/java/Parser.inc"/>
<arg value="META-INF/java/Protocol.inc"/>
<arg value="META-INF/java/SimpleParser.inc"/>
<arg value="${resDir}/META-INF/java/Java.inc"/> <!-- out -->
<arg value="${serverDir}/META-INF/java/JavaBridge.inc"/>
<arg value="${serverDir}/META-INF/java/Options.inc"/>
<arg value="${serverDir}/META-INF/java/Client.inc"/>
<arg value="${serverDir}/META-INF/java/GlobalRef.inc"/>
<arg value="${serverDir}/META-INF/java/NativeParser.inc"/>
<arg value="${serverDir}/META-INF/java/Parser.inc"/>
<arg value="${serverDir}/META-INF/java/Protocol.inc"/>
<arg value="${serverDir}/META-INF/java/SimpleParser.inc"/>
<fileset dir="${serverDir}">
<include name="META-INF/java/JavaProxy.inc"/>
</fileset>
</apply>
<copy file="${resDir}/META-INF/java/Java.inc" todir="${webappDir}/java/Java.inc"/>
<copy file="${resDir}/META-INF/java/Java.inc" todir="${webappDir}/java"/>
</target>
<target name="genJavaProxyPhp" depends="genJavaInc,genInit">
<apply executable="${php_exec}" failonerror="true" dir="${serverDir}" parallel="true">
<arg value="${serverDir}/buildJavaProxy.php"/>
<arg value="${resDir}/META-INF/java/JavaProxy.php"/>
<arg value="${resDir}/META-INF/java/JavaProxy.php"/> <!-- out -->
<fileset dir="${resDir}">
<include name="META-INF/java/Java.inc"/>
</fileset>
</apply>
<copy file="${resDir}/META-INF/java/JavaProxy.php" todir="${webappDir}/java/JavaProxy.php"/>
<copy file="${resDir}/META-INF/java/JavaProxy.php" todir="${webappDir}/java"/>
</target>
<target name="genJavaIncJava" depends="genJavaInc,genInit">
<apply executable="${php_exec}" failonerror="true" dir="${serverDir}" parallel="true">
Expand Down
36 changes: 0 additions & 36 deletions debian/Makefile.frag

This file was deleted.

152 changes: 0 additions & 152 deletions debian/README.Debian

This file was deleted.

Loading