-
Notifications
You must be signed in to change notification settings - Fork 60
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
Feature: ability to generate new Java Ant project for Processing #61
Comments
Hi @ybakos, Sorry for the ultra late reply! Became a dad a few months ago and was totally swamped in other projects! This looks very interesting, but also quite professional! Basically I think it would be super to include it, but as I'm not really familiar with ANT the maintenance would be on your side. Of course with super bold credits. Or maybe just do a new bundle "processing-java-sublime"? All the best, |
No problem and congratulations with the new baby. The maintenance is no problem really, since ant has been around a long time and is just a command-line executable. It doesn't impact any other part of the processing-sublime plugin, other than adding another command to the command palette. Up to you if you would like me to create a PR. I don't think it deserves being in its own bundle/package. |
Thanks for you understanding and patience! Then please go ahead! I guess you would just create an additional build system, a howto section "Processing project in pure Java and ant" in the readme and add a sketch pure-java template, or? |
In progress, need to ensure compatibility with ST3. |
I've been working on adding an ST plugin for our beloved Processing package that enables a user to generate a Processing project in pure Java with an ant buildfile. It works like this:
At this point, the user can engage in a workflow similar to how we've been doing things in Eclipse, but without Eclipse. I've been using this on my own for a little bit and it works pretty well.
You can see the progress so far here, and try it out if you want:
https://github.com/ybakos/processing-sublime/blob/pure_java_plugin/
To try it, you should have a Sublime window open with a folder in the sidebar, then select Tools -> Processing -> New Java Ant Project. There's also a command in the command palette: Cmd-Shift-P, Processing: New Java Ant Project.
The critical files here are
Processing.py
and the templates inCommands/templates
.Would love to get feedback while I work on this feature. Some TODO's:
The text was updated successfully, but these errors were encountered: