My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Nov 24, 2009
    issue 33 (Guice not useable in set up methods) reported by mcarl.privat   -   Set up methods defined in a JUnit4 test cannot make use of Guice. Fields annotated wit @Inject are null within @Before annotated methods.
    Set up methods defined in a JUnit4 test cannot make use of Guice. Fields annotated wit @Inject are null within @Before annotated methods.
  • Nov 24, 2009
    issue 32 (GuiceyJUnit4 calls ignores @After annotated methods) reported by mcarl.privat   -   Write a test having the GuiceyJUnit4 runner configured. Define method that should run after each test method and annotate with @After. Run the test. Methods annotated with @Before are executed twice. Responsible line of code (line 77) in 'withAfters(FrameworkMethod, Object, Statement)': final Statement parent = super.withBefores(frameworkMethod, test, statement);
    Write a test having the GuiceyJUnit4 runner configured. Define method that should run after each test method and annotate with @After. Run the test. Methods annotated with @Before are executed twice. Responsible line of code (line 77) in 'withAfters(FrameworkMethod, Object, Statement)': final Statement parent = super.withBefores(frameworkMethod, test, statement);

Earlier this year

  • Oct 26, 2009
    issue 28 (GuiceyFruit does not execute @PostConstruct in super class) commented on by norman.maurer   -   Is there any news on this ? Its some kind of a pita to need to override the methods on every subclass just to get the @PostConstruct seen... Thx
    Is there any news on this ? Its some kind of a pita to need to override the methods on every subclass just to get the @PostConstruct seen... Thx
  • Oct 24, 2009
    issue 31 (add method.setAccessible(true)) reported by mathieu.carbou   -   In the PreDestroyCloser class plus in the JSR250Module I would add method.setAccessible(true); I have a lot of classes in package local and also some method and some need lifecycle management through jsr250. Currently, calling non public methods or not in a public class fail... I think it would be nice to allow best of both world. Here is a failing use case: final class PreDestroyInChildInjector { public static void main(String... args) throws CloseFailedException { Injector parent = Guice.createInjector(new Jsr250Module()); Injector child = parent.createChildInjector(new AbstractModule() { @Override protected void configure() { bind(MyClass.class).in(Singleton.class); } }); child.getInstance(MyClass.class); Injectors.close(child); } static class MyClass { @PostConstruct void start() { System.out.println("start called"); } @PreDestroy void stop() { System.out.println("stop called"); } } }
    In the PreDestroyCloser class plus in the JSR250Module I would add method.setAccessible(true); I have a lot of classes in package local and also some method and some need lifecycle management through jsr250. Currently, calling non public methods or not in a public class fail... I think it would be nice to allow best of both world. Here is a failing use case: final class PreDestroyInChildInjector { public static void main(String... args) throws CloseFailedException { Injector parent = Guice.createInjector(new Jsr250Module()); Injector child = parent.createChildInjector(new AbstractModule() { @Override protected void configure() { bind(MyClass.class).in(Singleton.class); } }); child.getInstance(MyClass.class); Injectors.close(child); } static class MyClass { @PostConstruct void start() { System.out.println("start called"); } @PreDestroy void stop() { System.out.println("stop called"); } } }
  • Oct 24, 2009
    issue 30 (Injectors.close() in child injector) reported by mathieu.carbou   -   Hi, I create an injector with the Jsr250Module. Them from it i create a child injector where i have a binding using @PostConstruct and @PreDestroy. When i request my instance, the method annotated with @PostConstruct is called correctly even in child injectors. But when i "close" the child injector using Injectors.close(child), the method annotated by @PreDestroy in the binding of the child injector is not called. This is because the PreDestroyCloser is bound in the parent injector. Here is a use case: final class PreDestroyInChildInjector { public static void main(String... args) throws CloseFailedException { Injector parent = Guice.createInjector(new Jsr250Module()); Injector child = parent.createChildInjector(new AbstractModule() { @Override protected void configure() { bind(MyClass.class).in(Singleton.class); } }); child.getInstance(MyClass.class); Injectors.close(child); } public static class MyClass { @PostConstruct public void start() { System.out.println("start called"); } @PreDestroy public void stop() { System.out.println("stop called"); } } } A fix I've found would be in the Injectors class, instead of calling injector.getBindings(), call a method instead: Injectors.getAllBindings(Injector i) which will return the complete set of available bindings from the child to the top parent, and not only those from the current child injector: public Map<Key<?>, Binding<?>> getAllBindings(Injector i) { Map<Key<?>, Binding<?>> all = new LinkedHashMap<Key<?>, Binding<?>>(); while (i != null) { all.putAll(i.getBindings()); i = i.getParent(); } return all; } NB: i first tried to call Injectors.close(child) and then Injectors.close(child.getParent) but obviously it does not work since the first call does not find the Closer binding and the second call does not find the MyClass binding in its child.
    Hi, I create an injector with the Jsr250Module. Them from it i create a child injector where i have a binding using @PostConstruct and @PreDestroy. When i request my instance, the method annotated with @PostConstruct is called correctly even in child injectors. But when i "close" the child injector using Injectors.close(child), the method annotated by @PreDestroy in the binding of the child injector is not called. This is because the PreDestroyCloser is bound in the parent injector. Here is a use case: final class PreDestroyInChildInjector { public static void main(String... args) throws CloseFailedException { Injector parent = Guice.createInjector(new Jsr250Module()); Injector child = parent.createChildInjector(new AbstractModule() { @Override protected void configure() { bind(MyClass.class).in(Singleton.class); } }); child.getInstance(MyClass.class); Injectors.close(child); } public static class MyClass { @PostConstruct public void start() { System.out.println("start called"); } @PreDestroy public void stop() { System.out.println("stop called"); } } } A fix I've found would be in the Injectors class, instead of calling injector.getBindings(), call a method instead: Injectors.getAllBindings(Injector i) which will return the complete set of available bindings from the child to the top parent, and not only those from the current child injector: public Map<Key<?>, Binding<?>> getAllBindings(Injector i) { Map<Key<?>, Binding<?>> all = new LinkedHashMap<Key<?>, Binding<?>>(); while (i != null) { all.putAll(i.getBindings()); i = i.getParent(); } return all; } NB: i first tried to call Injectors.close(child) and then Injectors.close(child.getParent) but obviously it does not work since the first call does not find the Closer binding and the second call does not find the MyClass binding in its child.
  • Oct 24, 2009
    issue 29 (com.google.inject.spi.CachedValue) reported by mathieu.carbou   -   Hi, The Injectors class cast Provider to CachedValue to close objets. I am using GuiceyFruit with the official Guice 2 release, which does not contain this class. I was wondering if it is safe to replace this method: private static void closeBinding(Key<?> key, Binding<?> binding, Class<? extends Annotation> scopeAnnotationToClose, Closer closer, CloseErrors errors) { Provider<?> provider = binding.getProvider(); Class<? extends Annotation> scopeAnnotation = getScopeAnnotation(binding); if (scopeAnnotation != null && scopeAnnotation.equals(scopeAnnotationToClose) && provider instanceof CachedValue) { CachedValue cachedValue = (CachedValue) provider; Object value = cachedValue.getCachedValue(); if (value != null) { Closers.close(key, value, closer, errors); } } } by this one: Provider<?> provider = binding.getProvider(); Class<? extends Annotation> scopeAnnotation = getScopeAnnotation(binding); if (scopeAnnotation != null && scopeAnnotation.equals(scopeAnnotationToClose)) { Object value = provider.get(); if (value != null) { Closers.close(key, value, closer, errors); } } Thanks a lot !
    Hi, The Injectors class cast Provider to CachedValue to close objets. I am using GuiceyFruit with the official Guice 2 release, which does not contain this class. I was wondering if it is safe to replace this method: private static void closeBinding(Key<?> key, Binding<?> binding, Class<? extends Annotation> scopeAnnotationToClose, Closer closer, CloseErrors errors) { Provider<?> provider = binding.getProvider(); Class<? extends Annotation> scopeAnnotation = getScopeAnnotation(binding); if (scopeAnnotation != null && scopeAnnotation.equals(scopeAnnotationToClose) && provider instanceof CachedValue) { CachedValue cachedValue = (CachedValue) provider; Object value = cachedValue.getCachedValue(); if (value != null) { Closers.close(key, value, closer, errors); } } } by this one: Provider<?> provider = binding.getProvider(); Class<? extends Annotation> scopeAnnotation = getScopeAnnotation(binding); if (scopeAnnotation != null && scopeAnnotation.equals(scopeAnnotationToClose)) { Object value = provider.get(); if (value != null) { Closers.close(key, value, closer, errors); } } Thanks a lot !
  • Oct 22, 2009
    issue 28 (GuiceyFruit does not execute @PostConstruct in super class) commented on by norman.maurer   -   Same here..
    Same here..
  • Oct 16, 2009
    issue 28 (GuiceyFruit does not execute @PostConstruct in super class) reported by philippe.tseyen   -   @Test public void testPostConstruct() { AbstractModule module = new AbstractModule() { @Override protected void configure() { bind(PostConstruct.class); } }; Module combine = Modules.combine(module, new Jsr250Module()); Injector createInjector = Guice.createInjector(combine); PostConstruct instance = createInjector.getInstance(PostConstruct.class); assertEquals(2, instance.collector.size()); assertEquals("superPostConstruct", instance.collector.get(0)); assertEquals("postConstruct", instance.collector.get(1)); } @Singleton public static class SuperPostConstruct { public List<String> collector = new ArrayList<String>(); @javax.annotation.PostConstruct public void superPostConstruct() { collector.add("superPostConstruct"); } } @Singleton public static class PostConstruct extends SuperPostConstruct { @javax.annotation.PostConstruct public void postConstruct() { collector.add("postConstruct"); } } Guice 2.0, GuiceyFruit 2.0
    @Test public void testPostConstruct() { AbstractModule module = new AbstractModule() { @Override protected void configure() { bind(PostConstruct.class); } }; Module combine = Modules.combine(module, new Jsr250Module()); Injector createInjector = Guice.createInjector(combine); PostConstruct instance = createInjector.getInstance(PostConstruct.class); assertEquals(2, instance.collector.size()); assertEquals("superPostConstruct", instance.collector.get(0)); assertEquals("postConstruct", instance.collector.get(1)); } @Singleton public static class SuperPostConstruct { public List<String> collector = new ArrayList<String>(); @javax.annotation.PostConstruct public void superPostConstruct() { collector.add("superPostConstruct"); } } @Singleton public static class PostConstruct extends SuperPostConstruct { @javax.annotation.PostConstruct public void postConstruct() { collector.add("postConstruct"); } } Guice 2.0, GuiceyFruit 2.0
  • Aug 11, 2009
    issue 24 (@RunWith( GuicyJUnit4 ) relies on outdated Guice code) commented on by jailjones   -   When call Injectors.close(injector), I get the following error: java.lang.NoClassDefFoundError: com/google/inject/spi/CachedValue at org.guiceyfruit.Injectors.closeBinding(Injectors.java:378) at org.guiceyfruit.Injectors.close(Injectors.java:338) at org.guiceyfruit.Injectors.close(Injectors.java:310) at org.guiceyfruit.Injectors.close(Injectors.java:302)
    When call Injectors.close(injector), I get the following error: java.lang.NoClassDefFoundError: com/google/inject/spi/CachedValue at org.guiceyfruit.Injectors.closeBinding(Injectors.java:378) at org.guiceyfruit.Injectors.close(Injectors.java:338) at org.guiceyfruit.Injectors.close(Injectors.java:310) at org.guiceyfruit.Injectors.close(Injectors.java:302)
  • Jul 28, 2009
    issue 27 (@PostConstruct called even though injection failed) reported by watts.chris   -   This is using GuiceFruit 2.0, Guice 2.0 (from the guiceyfruit mvn repo). 1. I've registered the module Jsr250Module. 2. I have a provider that on calling of get() throws a RuntimeException. 3. The bean being injected (called SessionForm) has a method init annotated with @PostConstruct. 4. SessionForm.init calls a method on injectedVariable, which throws a NullPointerException 5. GuiceyFruitModule throws a ProvisionException with a null message causing a 2nd NPE to be thrown. So theres 2 errors here. I've tried poking around but don't know the innards of guiceyfruit and guice enough to know where to look. But there should be some way to check if there were injection errors and if so NOT call the PostContruct method(s). The 2nd one is just an annoyance which could be fixed via line 166, from: throw new ProvisionException(e.getMessage(), e); To: throw new ProvisionException(e.getMessage()==null?e.toString():e.getMessage(), e);
    This is using GuiceFruit 2.0, Guice 2.0 (from the guiceyfruit mvn repo). 1. I've registered the module Jsr250Module. 2. I have a provider that on calling of get() throws a RuntimeException. 3. The bean being injected (called SessionForm) has a method init annotated with @PostConstruct. 4. SessionForm.init calls a method on injectedVariable, which throws a NullPointerException 5. GuiceyFruitModule throws a ProvisionException with a null message causing a 2nd NPE to be thrown. So theres 2 errors here. I've tried poking around but don't know the innards of guiceyfruit and guice enough to know where to look. But there should be some way to check if there were injection errors and if so NOT call the PostContruct method(s). The 2nd one is just an annoyance which could be fixed via line 166, from: throw new ProvisionException(e.getMessage(), e); To: throw new ProvisionException(e.getMessage()==null?e.toString():e.getMessage(), e);
  • Jul 16, 2009
    issue 26 (GuiceyFruitTestNG testcase: Using org.guiceyfruit.modules in...) commented on by scshrihari   -   Please find attached the test project with Maven POM. If you execute 'mvn test' you could find the same failures in two places: startTestScope and tearDown.
    Please find attached the test project with Maven POM. If you execute 'mvn test' you could find the same failures in two places: startTestScope and tearDown.
  • Jul 16, 2009
    issue 26 (GuiceyFruitTestNG testcase: Using org.guiceyfruit.modules in...) commented on by james.strachan   -   Awesome thanks! I'm sure I'll be able to fix this really quickly once there's little test project/test case that demonstrates it
    Awesome thanks! I'm sure I'll be able to fix this really quickly once there's little test project/test case that demonstrates it
  • Jul 16, 2009
    issue 26 (GuiceyFruitTestNG testcase: Using org.guiceyfruit.modules in...) commented on by shriharisc   -   I am working on it and will submit it soon.
    I am working on it and will submit it soon.
  • Jul 15, 2009
    issue 26 (GuiceyFruitTestNG testcase: Using org.guiceyfruit.modules in...) commented on by james.strachan   -   any chance you could submit a little test case project that demonstrates this issue?
    any chance you could submit a little test case project that demonstrates this issue?
  • Jul 15, 2009
    r3523 (improved test case to show how to inject an EntityManager ba...) committed by james.strachan   -   improved test case to show how to inject an EntityManager based on an EntityManagerFactory implementation
    improved test case to show how to inject an EntityManager based on an EntityManagerFactory implementation
  • Jul 10, 2009
    issue 26 (GuiceyFruitTestNG testcase: Using org.guiceyfruit.modules in...) reported by shriharisc   -   Steps: ------ 1) Develop a test case extending GuiceyTestCase, without @UseModule, as I need more than 1 module to inject 2) Implement a test specific module extending AbstractModule, for custom binding. 3) Since I need to inject more than one module, specify the system property 'org.guiceyfruit.modules' in maven-surefire-plugin in pom.xml. Expected Output: ----------------- The GuiceyTestCase's injectorManager should inject all my modules specified. Actual Ouput: ----------------- Throws NPE at injectorManager.beforeTest()'s map.get() (and afterTest() also). java.lang.NullPointerException at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:768) at org.guiceyfruit.testing.InjectorManager.beforeTest(InjectorManager.java:105) at org.guiceyfruit.testing.testng.GuiceyTestCase.startTestScope(GuiceyTestCase.java:43) Versions used: ---------------- Google-Guice 2.0 GuiceyFruit 2.0 TestNG 5.8
    Steps: ------ 1) Develop a test case extending GuiceyTestCase, without @UseModule, as I need more than 1 module to inject 2) Implement a test specific module extending AbstractModule, for custom binding. 3) Since I need to inject more than one module, specify the system property 'org.guiceyfruit.modules' in maven-surefire-plugin in pom.xml. Expected Output: ----------------- The GuiceyTestCase's injectorManager should inject all my modules specified. Actual Ouput: ----------------- Throws NPE at injectorManager.beforeTest()'s map.get() (and afterTest() also). java.lang.NullPointerException at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:768) at org.guiceyfruit.testing.InjectorManager.beforeTest(InjectorManager.java:105) at org.guiceyfruit.testing.testng.GuiceyTestCase.startTestScope(GuiceyTestCase.java:43) Versions used: ---------------- Google-Guice 2.0 GuiceyFruit 2.0 TestNG 5.8
  • Jun 24, 2009
    r3521 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT-src.zip.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT-src.zip.md5
  • Jun 24, 2009
    r3517 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT-src.tar.gz
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT-src.tar.gz
  • Jun 24, 2009
    r3516 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT.zip.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT.zip.sha1
  • Jun 24, 2009
    r3513 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT.tar.gz.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/2.1-SNAPSHOT/guiceyfruit-2.1-SNAPSHOT.tar.gz.sha1
  • Jun 24, 2009
    r3510 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/maven-metadata.xml.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit/maven-metadata.xml.sha1
  • Jun 24, 2009
    r3498 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/maven-metadata.xml.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/maven-metadata.xml.sha1
  • Jun 24, 2009
    r3496 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/maven-metadata.xml
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/maven-metadata.xml
  • Jun 24, 2009
    r3493 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/maven-metadata.xml
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/maven-metadata.xml
  • Jun 24, 2009
    r3491 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit- bundle-2.1-SNAPSHOT.pom.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit- bundle-2.1-SNAPSHOT.pom.md5
  • Jun 24, 2009
    r3490 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit-bundle-2.1-SNAPSHOT.pom
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit-bundle-2.1-SNAPSHOT.pom
  • Jun 24, 2009
    r3489 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit- bundle-2.1-SNAPSHOT.jar.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-bundle/2.1-SNAPSHOT/guiceyfruit- bundle-2.1-SNAPSHOT.jar.sha1
  • Jun 24, 2009
    r3469 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring-converter/2.1-SNAPSHOT/guiceyfruit-spring- converter-2.1-SNAPSHOT-javadoc.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring-converter/2.1-SNAPSHOT/guiceyfruit-spring- converter-2.1-SNAPSHOT-javadoc.jar.md5
  • Jun 24, 2009
    r3450 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/2.1-SNAPSHOT/guiceyfruit-spring-2.1-SNAPSHOT- javadoc.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/2.1-SNAPSHOT/guiceyfruit-spring-2.1-SNAPSHOT- javadoc.jar.md5
  • Jun 24, 2009
    r3443 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/maven-metadata.xml
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/maven-metadata.xml
  • Jun 24, 2009
    r3434 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/2.1-SNAPSHOT/guiceyfruit-spring-2.1-SNAPSHOT.jar
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-spring/2.1-SNAPSHOT/guiceyfruit-spring-2.1-SNAPSHOT.jar
  • Jun 24, 2009
    r3431 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- javadoc.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- javadoc.jar.md5
  • Jun 24, 2009
    r3429 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- sources.jar.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- sources.jar.sha1
  • Jun 24, 2009
    r3428 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- sources.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit-testng-2.1-SNAPSHOT- sources.jar.md5
  • Jun 24, 2009
    r3422 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/maven-metadata.xml.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/maven-metadata.xml.md5
  • Jun 24, 2009
    r3419 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.pom.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.pom.md5
  • Jun 24, 2009
    r3417 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.jar.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.jar.sha1
  • Jun 24, 2009
    r3416 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-testng/2.1-SNAPSHOT/guiceyfruit- testng-2.1-SNAPSHOT.jar.md5
  • Jun 24, 2009
    r3406 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/2.1-SNAPSHOT/maven-metadata.xml.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/2.1-SNAPSHOT/maven-metadata.xml.md5
  • Jun 24, 2009
    r3401 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/maven-metadata.xml.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/maven-metadata.xml.sha1
  • Jun 24, 2009
    r3399 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/maven-metadata.xml
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit4/maven-metadata.xml
  • Jun 24, 2009
    r3387 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/maven-metadata.xml.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/maven-metadata.xml.md5
  • Jun 24, 2009
    r3384 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/maven-metadata.xml.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/maven-metadata.xml.md5
  • Jun 24, 2009
    r3380 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit-junit3-2.1-SNAPSHOT.pom
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit-junit3-2.1-SNAPSHOT.pom
  • Jun 24, 2009
    r3378 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit- junit3-2.1-SNAPSHOT.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit- junit3-2.1-SNAPSHOT.jar.md5
  • Jun 24, 2009
    r3377 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit-junit3-2.1-SNAPSHOT.jar
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-junit3/2.1-SNAPSHOT/guiceyfruit-junit3-2.1-SNAPSHOT.jar
  • Jun 24, 2009
    r3371 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/2.1-SNAPSHOT/guiceyfruit-jpa-2.1-SNAPSHOT- sources.jar.md5
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/2.1-SNAPSHOT/guiceyfruit-jpa-2.1-SNAPSHOT- sources.jar.md5
  • Jun 24, 2009
    r3363 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/maven-metadata.xml.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/maven-metadata.xml.sha1
  • Jun 24, 2009
    r3361 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/maven-metadata.xml
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-jpa/maven-metadata.xml
  • Jun 24, 2009
    r3355 (Autoversioning commit: a non-deltaV client made a change to...) committed by james.strachan   -   Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-ejb/2.1-SNAPSHOT/guiceyfruit-ejb-2.1-SNAPSHOT- javadoc.jar.sha1
    Autoversioning commit: a non-deltaV client made a change to /repo/snapshots/org/guiceyfruit/guiceyfruit-ejb/2.1-SNAPSHOT/guiceyfruit-ejb-2.1-SNAPSHOT- javadoc.jar.sha1
 
Hosted by Google Code