Hi Ted,

On 28 Jan 2025, at 01:04, Theodore Petrosky via Webobjects-dev 
<webobjects-dev@lists.apple.com> wrote:

> OK, so help me out with setting up the GAV for this framework. I have a 
> workspace with a project called MyApp. I have a framework in this workspace 
> called MuApp_FW. I don't understand what to put in the pom. The framework 
> lives in my workspace.

Say your framework's POM looks like this:

<project ...>
  <groupId>com.foo</groupId>
  <artifactId>MuApp_FW</artifactId>
  <version>0.1-SNAPSHOT</version>
...

Then you just copy that into the dependencies block in your app's POM:

<project>
...
  <dependencies>
    <dependency>
      <groupId>com.foo</groupId>
      <artifactId>MuApp_FW</artifactId>
      <version>0.1-SNAPSHOT</version>
...

Eclipse will find the framework if it's open in your workspace.


-- 
Paul Hoadley
https://logicsquad.net/
https://www.linkedin.com/company/logic-squad/

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to