Tag Archives: jslint4java
jslint4java 1.3.1
I’ve just released jslint4java 1.3.1. This is mostly thanks to Ari Shamash, who did an excellent job of telling me what needed to be done to get NetBeans to understand the output. The changes are small, but probably worth upgrading … Continue reading
jslint4maven
A real maven plugin for jslint4java would be nice. I will write one, but until then, you can always get away with using the antrun plugin. This is fairly simple to do now that jslint4java is available in the central … Continue reading
jslint4java 1.3 post-release notes
These are the things I had to do after releasing. Firstly, I needed to create a source archive as well as the main distribution archive. Git archive makes this super-easy. $ git archive –format=zip –prefix=’jslint4java-1.3/’ rel-1.3 >jslint4java-1.3-src.zip Secondly, I had … Continue reading
jslint4java 1.3
I’ve finally released jslint4java 1.3. It’s available for download from google code. The user visible improvements are few. Better documentation. The indent option is supported. Add getEdition() call. The ant task can now work with any kind of nested resource, … Continue reading
Publishing a subdirectory to github pages
I’ve written some HTML documentation for jslint4java. It lives in jslint4java-docs/src/main/resources in typical maven fashion. I’d like to get it published on github pages. The starting point is similar to their documentation. git symbolic-ref HEAD refs/heads/gh-pages rm .git/index git clean … Continue reading
AntUnit inside Maven
I’m in the middle of converting jslint4java to use maven as its build system (yes, really). Part of this is ensuring that the antunit tests I wrote continue to work. Maven has the antrun plugin, but it’s not 100% obvious … Continue reading
jslint4java 1.2
I’ve finally gotten around to finishing off the code that I’ve had sitting around in google code for over a year, and released jslint4java 1.2. The changes are actually pretty small: Update to jslint 2008-09-04. This adds several new options. … Continue reading
jslint4java 1.1
I’ve put out a new version of jslint4java. The changes aren’t huge, but there are a couple of note: Fix Issue 1: a NullPointerException when jslint gives up. This is doubly annoying because it’s both documented and it caught me … Continue reading
jslint4java
A while ago, I wrote a small wrapper around jslint in Perl: JavaScript-JSLint. However, it’s a real pain to use. There’s a dependency on JavaScript, which in turn needs a compiled version of spidermonkey. On a recent Java project at … Continue reading