I have a working Clojure cake build and want to build a .java file into my 
"bin". 

What changes do I need in my project and application files to have cake 
build the file?
Thanks.

The directory structure is:

./bank2/project.clj
./bank2/src/ba2_app.clj

The header of ba2_app.clj is

(ns ba2-app
    (:gen-class)
    (:use [clojure.string :only [split]]
          [clojure.string :only [join]]))

My Java class file is simple:

import java.util.Date;

public class Account {
    private int acct_num = 0;
    private char trans_type;
    private double trans_amt = 0.00;
    private double cur_bal = 0.00;
    private Date last_update;
}

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Attachment: project.clj
Description: Binary data

Reply via email to