Solved: Properties file not loading

2024-07-31 Thread Aaron Rosenzweig via Webobjects-dev
NSProjectBundleEnabled is critical! I don’t rightly know what this setting is about. By the name of it, I’d figure if it was on and enabled it would make a bundle for ProjectBuilder and/or Xcode (back when Apple had not abandoned us). For an app to find properties in a framework the "WO" tab i

Re: Properties file not loading

2024-07-31 Thread Aaron Rosenzweig via Webobjects-dev
Thanks Ramsey, That’s a very insightful tip. My framework had it correct but both apps did not. Namely, inside the tags of the pom.xml file should contain: Resources false Components

Re: Properties file not loading

2024-07-31 Thread Ramsey Gurley via Webobjects-dev
Maven by default checks src/main/resources whereas fluffy bunny layout by default looks at Resources. You can specify that maven should look in Resources in your pom.xml file if that is where you would like them located, which you probably do for zero conflicts with WOLips. See lines 52-70 here,