• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

build script?

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

When I downloaded the RC1 zip from sourceForge I noticed there wasn't any build scripts for the source. Are you using ANT for your build process? if so where can I find the build.xml file? If not what are you using for a build?

Thanks,
Ken
[originally posted on jforum.net by kencochrane]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, I don't use ant or any other build system...

Just run javac and be happy ;)

( maybe I make an ant script in the future )

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One thing that jGossip provides is an ant-based deployment scheme, which is very convenient. It is used to deploy multiple forums.

They have a top level 'env' directory, into which you place 'site' directories, for example 'jcvs' was my site, so there was a 'env/jcvs' directory in the project folder. You can have many sites in there.

Each env site directory contains files that are for that site only. For example, you can override the logo pic, you can set the various theme 'skin' parameters, you configure the database parameters (dbname, user, pass), etc.

Then you simply say 'ant -Dsite=sitename deploy' and a WAR file is built for you all configured for that particular site.

This really simplifies maintaining multiple forums.

[originally posted on jforum.net by Anonymous]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hm, interesting. I'll take a look. If you want, you could create a new issue on JIRA ( http://www.jforum.net/jira ), as "New Feature", so I don't forget to work on this in the feature ( or anybody else )

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I feel that if the project can be structured simply, there isn't a need to use Ant (which will also complicate stuffs a little). Just my 2 cents opinion.

--james yong




[originally posted on jforum.net by jamesyong]
 
Been there. Done that. Went back for more. But this time, I took this tiny ad with me:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic