Project:
equanda Java EE code generator
Code Location:
https://equanda.svn.sourceforge.net/svnroot/equanda/trunk/trunk
equanda-client/
pom.xml
<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"> <parent> <groupId>org.equanda</groupId> <artifactId>equanda</artifactId> <version>0.9.6-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.equanda</groupId> <artifactId>equanda-client</artifactId> <packaging>jar</packaging> <name>equanda-client</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.equanda</groupId> <artifactId>equanda-util</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </dependency> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-annotations-ejb3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-ejb-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-aop</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>
