2009/5/21 Martin Gainty <[email protected]>: > > can you display your pom.xml to determine which processes are being > spawned/exec'ed > > Martin
Absolutely. If I have any unit test in this module that just sleeps ex: Thread.sleep(100000); and I just hit ctrl-c, it leaves an orphaned process behind. Thanks! -=r <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.familysearch.digitalarchive</groupId> <artifactId>utilities</artifactId> <packaging>jar</packaging> <version>1.7-SNAPSHOT</version> <name>DAS Utilities</name> <parent> <groupId>org.familysearch.digitalarchive</groupId> <artifactId>digitalarchive</artifactId> <version>1.7-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <!-- Testing dependencies --> <dependency> <groupId>tyrex</groupId> <artifactId>tyrex</artifactId> <version>1.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <version>1.0.1B</version> <scope>test</scope> </dependency> </dependencies> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
