Skip to content

Commit

Permalink
updated Desktop jar
Browse files Browse the repository at this point in the history
  • Loading branch information
varunon9 committed Aug 8, 2017
1 parent e438d1a commit b127a1e
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 2 deletions.
20 changes: 20 additions & 0 deletions RemoteControlPC-JavaFXML/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,24 @@
nbproject/build-impl.xml and nbproject/jfx-impl.xml.
-->
<target name="package-for-store" depends="jar">
<property name="store.jar.name" value="RemoteControlPC"/>
<property name="store.dir" value="store"/>
<property name="store.jar" value="${store.dir}/${store.jar.name}.jar"/>
<echo message="Packaging ${application.title} into a single JAR at ${store.jar}"/>
<delete dir="${store.dir}"/>
<mkdir dir="${store.dir}"/>
<jar destfile="${store.dir}/temp_final.jar" filesetmanifest="skip">
<zipgroupfileset dir="dist" includes="*.jar"/>
<zipgroupfileset dir="dist/lib" includes="*.jar"/>
<manifest>
<attribute name="Main-Class" value="${main.class}"/>
</manifest>
</jar>
<zip destfile="${store.jar}">
<zipfileset src="${store.dir}/temp_final.jar"
excludes="META-INF/*.SF, META-INF/*.DSA, META-INF/*.RSA"/>
</zip>
<delete file="${store.dir}/temp_final.jar"/>
</target>
</project>
Binary file modified RemoteControlPC-JavaFXML/dist/RemoteControlPC.jar
Binary file not shown.
8 changes: 8 additions & 0 deletions RemoteControlPC-JavaFXML/nbproject/private/private.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
auxiliary.org-netbeans-modules-projectapi.issue214819_5f_fx_5f_enabled=true
compile.on.save=true
do.depend=false
do.jar=true
# No need to modify this property unless customizing JavaFX Ant task infrastructure
endorsed.javafx.ant.classpath=.
javac.debug=true
javadoc.preview=true
javafx.run.as=standalone
javafx.run.inbrowser=<Default System Browser>
javafx.run.inbrowser.path=
user.properties.file=/home/varun/.netbeans/8.0.2/build.properties
13 changes: 11 additions & 2 deletions RemoteControlPC-JavaFXML/nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processor.options=
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
Expand Down Expand Up @@ -30,7 +29,7 @@ dist.jar=${dist.dir}/RemoteControlPC.jar
dist.javadoc.dir=${dist.dir}/javadoc
endorsed.classpath=
excludes=
file.reference.RemoteControlPC-Libraries.jar=/home/varun/Desktop/Github/Remote-Control-PC/RemoteControlPC-Libraries/dist/RemoteControlPC-Libraries.jar
file.reference.RemoteControlPC-Libraries.jar=../RemoteControlPC-Libraries/dist/RemoteControlPC-Libraries.jar
includes=**
# Non-JavaFX jar file creation is deactivated in JavaFX 2.0+ projects
jar.archive.disabled=true
Expand Down Expand Up @@ -67,11 +66,16 @@ javafx.classpath.extension=\
${java.home}/lib/javaws.jar:\
${java.home}/lib/deploy.jar:\
${java.home}/lib/plugin.jar
javafx.deploy.adddesktopshortcut=false
javafx.deploy.addstartmenushortcut=false
javafx.deploy.allowoffline=true
# If true, application update mode is set to 'background', if false, update mode is set to 'eager'
javafx.deploy.backgroundupdate=false
javafx.deploy.disable.proxy=false
javafx.deploy.embedJNLP=true
javafx.deploy.includeDT=true
javafx.deploy.installpermanently=false
javafx.deploy.permissionselevated=false
# Set true to prevent creation of temporary copy of deployment artifacts before each run (disables concurrent runs)
javafx.disable.concurrent.runs=false
# Set true to enable multiple concurrent runs of the same WebStart or Run-in-Browser project
Expand All @@ -92,6 +96,9 @@ javafx.preloader.type=none
javafx.rebase.libs=false
javafx.run.height=600
javafx.run.width=800
javafx.signing.blob=false
javafx.signing.enabled=false
javafx.signing.type=notsigned
# Pre-JavaFX 2.0 WebStart is deactivated in JavaFX 2.0+ projects
jnlp.enabled=false
# Main class for Java launcher
Expand All @@ -102,6 +109,8 @@ manifest.custom.codebase=*
manifest.custom.permissions=
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false
native.bundling.enabled=false
platform.active=default_platform
run.classpath=\
${dist.jar}:\
Expand Down
Binary file not shown.

0 comments on commit b127a1e

Please sign in to comment.