SAP / olingo-jpa-processor-v4

The JPA Processor fills the gap between Olingo V4 and the database, by providing a mapping between JPA metadata and OData metadata, generating queries and supporting the entity manipulations.
Apache License 2.0
122 stars 76 forks source link

Maven missing artifact com.sap.olingo? #186

Closed guyonthebed closed 1 year ago

guyonthebed commented 1 year ago

At first, it doesn't create "archetype-catalog.xml" file so I new one, quickstart successfully.

  <archetypes>
    <archetype>
        <groupId>com.sap.olingo</groupId>
        <artifactId>odata-jpa-archetype-spring</artifactId>
        <version>1.0.9-SNAPSHOT</version>
    </archetype>
  </archetypes>

Then the pom.xml tips missing "artifact com.sap.olingo:xxx" , I try to change the processor.version to "1.0.9-SNAPSHOT", it still not works. How can I solve this problem?

<properties>
    <processor.version>1.0.9</processor.version>
    <java.version>1.8</java.version>
    <eclipselink.version>2.7.9</eclipselink.version>
    <jpa.version>2.2.1</jpa.version>
</properties>

<dependency>
    <groupId>com.sap.olingo</groupId>
    <artifactId>odata-jpa-processor</artifactId>
    <version>${processor.version}</version>
</dependency>

<dependency>
    <groupId>com.sap.olingo</groupId>
    <artifactId>odata-jpa-processor-cb</artifactId>
    <version>${processor.version}</version>
</dependency>      

<dependency>
    <groupId>com.sap.olingo</groupId>
    <artifactId>odata-jpa-spring-support</artifactId>
    <version>${processor.version}</version>
</dependency>