It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I use active objects for my database.
I added following dependency in pom.xml:
<dependency> <groupId>com.atlassian.activeobjects</groupId> <artifactId>activeobjects-plugin</artifactId> <version>${ao.version}</version> <scope>provided</scope> </dependency>
I added following pluginArtifacts in the configuration within the build-scope in pom.xml:
<pluginArtifacts> <pluginArtifact> <groupId>com.atlassian.activeobjects</groupId> <artifactId>activeobjects-plugin</artifactId> <version>${ao.version}</version> </pluginArtifact> <pluginArtifact> <groupId>com.atlassian.activeobjects</groupId> <artifactId>activeobjects-jira-spi</artifactId> <version>${ao.version}</version> </pluginArtifact> </pluginArtifacts>
I use ao.version = 0.20
In my atlassian-plugin.xml I added:
<component-import key="ao" name="Active Objects components" interface="com.atlassian.activeobjects.external.ActiveObjects"> <description>Access to the Active Objects service</description> </component-import> <ao key="ao-module"> <description>The configuration of the Active Objects service</description> <entity>com.atlassian.dashboardTemplate.model.TemplateEntity</entity></ao>
And I created an interface:
package com.atlassian.dashboardTemplate.model; import net.java.ao.Entity; import net.java.ao.schema.AutoIncrement; import net.java.ao.schema.NotNull; import net.java.ao.schema.PrimaryKey; public interface TemplateEntity extends Entity { @PrimaryKey @AutoIncrement public long getId(); public void setId(long id); public String getName(); public void setName(String name); @NotNull public String getVersion(); public void setVersion(); public long getCreationDate(); public void setCreationDate(long date); }
My Problem:
Whenever I run "pi" in atlas-cli I got the error that package net.java.ao does not exist. But what is wierd that I can import it in Eclipse without any errors.
Do an atlas-clean and try again. That might fix it.
Why we need to do this all the time ?
This error occurs always and atlas-clean, atlas-debug take time so much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey admins! I’m Dave, Principal Product Manager here at Atlassian working on our cloud platform and security products. Cloud security is a moving target. As you adopt more products, employees consta...
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.