On Tuesday, July 1, 2014 4:36:19 PM UTC-4, NotRobert Deniro wrote:
> The build team at the customer's site can't use lein (for whatever reason).
> 
> I figured the way to build everything else ( protobufs, uberjar, aot, etc.. ) 
> between projects.
> 
> Is there a maven way to build ClojureScript e.g. the same way lein-cljsbuild 
> does it? (Or using lein-cljsbuild from maven..)
> 
> Thank you,
> /Anatoly

currently working politics with the build team, on whether they'd be ok to just 
have lein installed on build boxes, then I can do:

            <plugin>
                <artifactId>exec-maven-plugin</artifactId>
                <groupId>org.codehaus.mojo</groupId>
                <executions>
                    <execution>
                        <id>compiling ClojureScript</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                        <configuration>
                            <executable>lein</executable>
                            <arguments>
                                <argument>cljsbuild</argument>
                                <argument>once</argument>
                            </arguments>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

But it would still be advantageous to have a _pure maven_ way to build 
ClojureScript. From the several projects I've done in Clojure so far, build 
teams is one of the major bottlenecks in adoption. To continue observations 
from real projects: somehow, Scala does not scare people as much as Clojure.. 
Don't think it is syntax, mostly great marketing.

Thank you,
/Anatoly

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.

Reply via email to