faa-swim / fns-client

The System Wide Information Service (SWIM) Federal NOTAM System (FNS) Java Messaging Service (JMS) Reference Implementation (FnsClient) provides an example implementation on how to establish and maintain a local instance of the FNS NOTAM Database through the use of the FNS Initial Load (FIL) and SWIM FNS JMS services. FIL provides all active NOTAMS, via SFTP, that is required to initialize a NOTAM database and the SWIM JMS service provides, via JMS, NOTAM updates to keep the NOTAM database current. FIL also provides for re-initialization of a NOTAM database in the case of JMS service interruption.
Apache License 2.0
12 stars 6 forks source link

Missing artifact issues #7

Open nightwatcher1star opened 1 year ago

nightwatcher1star commented 1 year ago

Hi

i am getting the following errors

[{ "resource": "/Users/xyz/fns-client/pom.xml", "owner": "_generated_diagnostic_collectionname#3", "code": "0", "severity": 8, "message": "Missing artifact us.dot.faa.swim.jaxb.aixm:aixm-5.1:jar:1.0", "source": "Java", "startLineNumber": 68, "startColumn": 4, "endLineNumber": 68, "endColumn": 15 }] Missing artifact us.dot.faa.swim.jms:jms-client:jar:1.0 Missing artifact us.dot.faa.swim.utilities:swim-utilities:jar:1.0

with respect to the below code block

    <dependency>
        <groupId>us.dot.faa.swim.jaxb.aixm</groupId>
        <artifactId>aixm-5.1</artifactId>
        <version>1.0</version>
    </dependency>
    <dependency>
        <groupId>us.dot.faa.swim.jms</groupId>
        <artifactId>jms-client</artifactId>
        <version>1.0</version>
    </dependency>
    <dependency>
        <groupId>us.dot.faa.swim.utilities</groupId>
        <artifactId>swim-utilities</artifactId>
        <version>1.0</version>
    </dependency>

Also getting the error The project was not built since its build path is incomplete. Cannot find the class file for javax.xml.bind.JAXBElement. Fix the build path then try building this project

Would appreciate if you can guide me to resolve these issues.

thank you