It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm developing confluence macro plugin using java. I have created the h2 embedded database and I have added the dependency in pom.xml but i'm getting an Bundle Exception error
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.174</version>
</dependency>
ERROR [QuickReload - Plugin Installer] [plugin.osgi.factory.OsgiPlugin] enableInternal Detected an error (BundleException) enabling the plugin [caused by: Unable to resolve 257.0: missing requirement [257.0] osgi.wiring.package; (osgi.wiring.package=com.ibm.uvm.tools)]. This error usually occurs when your plugin imports a package from another bundle with a specific version constraint and either the bundle providing that package doesn't meet those version constraints, or there is no bundle available that provides the specified package. For more details on how to fix this, see https://developer.atlassian.com/x/mQAN
Please anybody help me to include h2.jar and database file in the confluence macro plugin and build a mvn package
This is something I would want to question quite a lot. Three reasons
If you are embedding a database driver into an add-on, that makes it useless for other databases, and makes your macro useless for other Confluences.
Reading an Atlassian database directly is almost always the worst possible way to work with a system. Unless you're coding for a database that isn't the Confluence the macro will be running in, you are probably doing it the wrong way.
Finally, you're asking about an h2 database. Again, if this is an Atlassian system, I'd question the reason, as an h2 based Atlassian system is going to be a dev/test system, not a real user system.
Could you tell us what this macro is actually for? Not in tems of "I want to do something", but "the users of the macro will get this out of it".
I'm developing a macro for fetching the Active Directory data of the current user and storing it in local embedded database and showing it as OrgChart in the confluence.
I have already done fetching data from AD and rendering it as org chart in confluence. Now I need to bring local database for middleware to store AD data and render it in confluence(Periodic & OnDemand Sync from AD)
Please help me for achieve this. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would probably be a lot better to do this with Active Objects rather than write your own data store. See https://developer.atlassian.com/docs/atlassian-platform-common-components/active-objects
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good morning, After a long weekend cleaning up, I am still in the cleanup mode 😊. I am curious to know: When do you feel the urgency to cleanup your Atlassian Tools? How many times do y...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.