OAuth-Apis / apis

OAuth Authorization as a Service
Apache License 2.0
593 stars 301 forks source link

Library missing: nl.surfnet.apis:apis-resource-server-library:jar:1.3.6-SNAPSHOT #65

Closed bonndan closed 9 years ago

bonndan commented 9 years ago

The directory https://build.surfconext.nl/repository/public/snapshots/nl/surfnet/apis/apis-resource-server-library/1.3.6-SNAPSHOT/ is empty, maven cannot obtain nl.surfnet.apis:apis-resource-server-library:jar:1.3.6-SNAPSHOT

gvanderploeg commented 9 years ago

That module that you're missing is actually part of the build. If you run mvn clean:install on 'parent level' of the project, Maven should figure out the correct build order and build the apis-resource-server-library module before dependant ones. See also the modules section in the parent pom:

<modules>
  <module>apis-resource-server-library</module>
  <module>apis-example-resource-server</module>
  <module>apis-authorization-server</module>
  <module>apis-authorization-server-war</module>
  <module>apis-surfconext-authn</module>
  <module>apis-example-resource-server-war</module>
  <module>apis-example-client-app</module>
  <module>apis-openconext-mock-war</module>
  <module>apis-authorization-server-dist</module>
</modules>
bonndan commented 9 years ago

Thanks!