killbill-uncached

Details

account/pom.xml 11(+11 -0)

diff --git a/account/pom.xml b/account/pom.xml
index a55ee85..ac8a658 100644
--- a/account/pom.xml
+++ b/account/pom.xml
@@ -107,6 +107,17 @@
                     <groups>setup,fast</groups>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 </project>
diff --git a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccount.java b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccount.java
index ff34909..cc08699 100644
--- a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccount.java
+++ b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccount.java
@@ -145,4 +145,10 @@ public class BrainDeadAccount implements Account {
 		throw new UnsupportedOperationException();
 	}
 
+	@Override
+	public void addFields(List<CustomField> fields) {
+		throw new UnsupportedOperationException();
+		
+	}
+
 }
diff --git a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccountUserApi.java b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccountUserApi.java
index 5ceaa5b..94f0ea7 100644
--- a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccountUserApi.java
+++ b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadAccountUserApi.java
@@ -20,38 +20,43 @@ import java.util.List;
 import java.util.UUID;
 
 import com.ning.billing.account.api.Account;
+import com.ning.billing.account.api.AccountApiException;
 import com.ning.billing.account.api.AccountData;
 import com.ning.billing.account.api.AccountUserApi;
+import com.ning.billing.util.customfield.CustomField;
+import com.ning.billing.util.tag.Tag;
 
 public class BrainDeadAccountUserApi implements AccountUserApi {
 
+
 	@Override
-	public Account createAccount(AccountData data) {
+	public Account getAccountByKey(String key) {
 		throw new UnsupportedOperationException();
 	}
 
 	@Override
-	public void saveAccount(Account account) {
+	public Account getAccountById(UUID accountId) {
 		throw new UnsupportedOperationException();
 	}
 
 	@Override
-	public Account getAccountByKey(String key) {
+	public List<Account> getAccounts() {
 		throw new UnsupportedOperationException();
 	}
 
 	@Override
-	public Account getAccountById(UUID accountId) {
+	public UUID getIdFromKey(String externalKey) {
 		throw new UnsupportedOperationException();
 	}
 
 	@Override
-	public List<Account> getAccounts() {
+	public Account createAccount(AccountData data, List<CustomField> fields,
+			List<Tag> tags) throws AccountApiException {
 		throw new UnsupportedOperationException();
 	}
 
 	@Override
-	public UUID getIdFromKey(String externalKey) {
+	public void updateAccount(Account account) {
 		throw new UnsupportedOperationException();
 	}