I have SVN revision 117. When I doing build, getting: "compile:
C:\Users\Kyle\Documents\NetBeansProjects\l2fprod-common-7.3\lib\l2fprod-common-buttonbar.jar is a directory or can't be read. Not copying the libraries."
Does anybody know ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It seems to be a missing library, but since it doesn't generate errors, it's probably unused.
I tried to fix that and some other problems in revision 119.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hm. It works fine for me. Try updating your svn. If that doesnt work try copying and pasting this into you build.xml file-
<?xmlversion="1.0"encoding="UTF-8"?><projectname="JavaPoint"default="default"basedir="."><description>Builds,tests,andrunstheprojectJavaPoint.</description><importfile="nbproject/build-impl.xml"/><importfile="nbproject/profiler-build-impl.xml"/><targetname="package-for-store"depends="jar"><!--ChangethevalueofthispropertytobethenameofyourJAR,minusthe.jarextension.Itshouldnothavespaces.<propertyname="store.jar.name"value="MyJarName"/>--><propertyname="store.jar.name"value="JavaPoint"/><!--don't edit below this line --><propertyname="store.dir"value="store"/><propertyname="store.jar"value="${store.dir}/${store.jar.name}.jar"/><echomessage="Packaging ${application.title} into a single JAR at ${store.jar}"/><deletedir="${store.dir}"/><mkdirdir="${store.dir}"/><jardestfile="${store.dir}/temp_final.jar"filesetmanifest="skip"><zipgroupfilesetdir="dist"includes="*.jar"/><zipgroupfilesetdir="dist/lib"includes="*.jar"/><manifest><attributename="Main-Class"value="${main.class}"/></manifest></jar><zipdestfile="${store.jar}"><zipfilesetsrc="${store.dir}/temp_final.jar"excludes="META-INF/*.SF, META-INF/*.DSA, META-INF/*.RSA"/></zip><deletefile="${store.dir}/temp_final.jar"/></target></project>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I changed paths to be relative to location of project.properties and removed reference to l2fprod-common-tasks.jar, and now it works. I checked-in the file, pls check if it works for you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sources are not compiled after revision 311. New jars were not uploaded and project.properties contains
file.reference.substance.jar=C:\\Users\\Kyle\\Downloads\\substance.jar
file.reference.trident.jar=C:\\Users\\Kyle\\Downloads\\substance-all\\lib\\trident.jar
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have SVN revision 117. When I doing build, getting: "compile:
C:\Users\Kyle\Documents\NetBeansProjects\l2fprod-common-7.3\lib\l2fprod-common-buttonbar.jar is a directory or can't be read. Not copying the libraries."
Does anybody know ?
It seems to be a missing library, but since it doesn't generate errors, it's probably unused.
I tried to fix that and some other problems in revision 119.
That was my fault. Accidentally included that and forgot to remove it.
"lib" directory is not created now in "dist" directory after clean+build. I can't also build a single jar because it looks for dist/lib directory.
Hm. It works fine for me. Try updating your svn. If that doesnt work try copying and pasting this into you build.xml file-
I am up to date and it doesn't work with your build.xml also. I think the problem is in project.properties:
1. It contains paths relatively to your machine: C:\\Users\\Kyle\\
2. l2fprod-common-tasks.jar doesn't exist at all for me.
I changed paths to be relative to location of project.properties and removed reference to l2fprod-common-tasks.jar, and now it works. I checked-in the file, pls check if it works for you.
It works fine for me.
Sources are not compiled after revision 311. New jars were not uploaded and project.properties contains
file.reference.substance.jar=C:\\Users\\Kyle\\Downloads\\substance.jar
file.reference.trident.jar=C:\\Users\\Kyle\\Downloads\\substance-all\\lib\\trident.jar
oops. That is my bad I forget that libraries are added with local refernces. I will fix this and recommit.