• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Maven - Unresolved references to [javax.activation, javax.annotation]

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm developing web application with OSGI. I have a maven configuration error which I cannot find. This is the complete source code: http://uploading.com/files/8e5c9888/SH_27_test.zip/

This is the POM file:





When I try to compile it with Netbeans I get this error: http://pastebin.com/whxuSb7V

The problem occurs when I add @Datasource. It seems that I'm missing something in the POM file but I don't have idea what it is?

Any help will be highly appreciated.

Best Wishes Peter
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think that you need to add a javaee JAR file to the dependencies because that is where I see the javax.activation.DataSource class is located. But I'm not sure about the interaction between OSGI and Maven and who declares what where.

The error that you pointed too seems to have something to do with OSGI configuration files:

Caused by: org.apache.maven.plugin.MojoFailureException: Error(s) found in bundle configuration
at org.apache.felix.bundleplugin.BundlePlugin.execute(BundlePlugin.java:355)

Would be nice if the plugin outlined those errors, but the sheer amount of text you posted is a lot more than I want to look through, especially not knowing OSGI or what info it outputs.

 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic