Skip to content

Commit

Permalink
Tweaked tests, fixed bug in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrisbin committed Jul 9, 2010
1 parent 322c32f commit c028e8c
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 33 deletions.
2 changes: 1 addition & 1 deletion amqp-appender/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>amqp-appender</artifactId>
<data>vCloud AMQP Log4J Appender</data>
<name>vCloud AMQP Log4J Appender</name>
<version>1.0.1</version>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion amqp-classloader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>amqp-classloader</artifactId>
<data>vCloud ClassLoader</data>
<name>vCloud ClassLoader</name>
<version>1.0.0</version>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion async-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>async-cache</artifactId>
<data>vCloud Asynchronous Distributed Cache</data>
<name>vCloud Asynchronous Distributed Cache</name>
<version>1.0.0</version>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion async-cache/src/main/resources/log4j.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</category>

<root>
<level value="DEBUG" />
<level value="INFO" />
<appender-ref ref="console" />
</root>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,24 @@ protected Object deserialize( byte[] bytes ) throws IOException, ClassNotFoundEx
return obj;
}

static class TestObject implements Serializable {

private String data;

public String getData() {
return data;
}

public void setData( String data ) {
this.data = data;
}

@Override
public String toString() {
String s = super.toString();
return s + ",data=" + data.substring( 0, 16 ) + "...";
}

}

}

This file was deleted.

2 changes: 1 addition & 1 deletion mbean-invoker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>mbean-invoker</artifactId>
<version>1.0.1</version>
<data>vCloud Catalina JMX Invoker</data>
<name>vCloud Catalina JMX Invoker</name>
<packaging>jar</packaging>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>core</artifactId>
<version>1.0</version>
<data>vCloud</data>
<name>vCloud</name>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion session-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>session-manager</artifactId>
<version>1.2.1</version>
<data>vCloud Catalina Session Manager</data>
<name>vCloud Catalina Session Manager</name>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion spring-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.jbrisbin.vcloud</groupId>
<artifactId>spring-security</artifactId>
<data>vCloud Spring Security Integration</data>
<name>vCloud Spring Security Integration</name>
<version>1.0.0</version>

<dependencies>
Expand Down

0 comments on commit c028e8c

Please sign in to comment.