<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.jboss.fresh</groupId>
    <artifactId>fresh-root</artifactId>
    <version>1.0.0.Alpha1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jboss.fresh</groupId>
  <artifactId>fresh-shell</artifactId>
  <packaging>jar</packaging>
  <name>JBoss Fresh - Shell</name>
  <url>http://www.jboss.org/fresh</url>
  <description>JBoss Fresh - Shell</description>

  <build>
    <plugins>
      <plugin>
	<groupId>org.codehaus.mojo</groupId>
        <artifactId>javacc-maven-plugin</artifactId>
        <version>2.1</version>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>javacc</goal>
            </goals>
          </execution>
        </executions>
      </plugin>  
    </plugins>
  </build>

  <dependencies>
      <dependency>
        <groupId>org.jboss.microcontainer</groupId>
        <artifactId>jboss-dependency</artifactId>
      </dependency>
      <dependency>
        <groupId>org.jboss.microcontainer</groupId>
        <artifactId>jboss-kernel</artifactId>
      </dependency>
      <dependency>
        <groupId>org.jboss.microcontainer</groupId>
        <artifactId>jboss-aop-mc-int</artifactId>
      </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

      <dependency>
        <groupId>apache-log4j</groupId>
        <artifactId>log4j</artifactId>
        <scope>provided</scope>
      </dependency>
      
      <dependency>
        <groupId>org.jboss.fresh</groupId>
  	<artifactId>fresh-util</artifactId>
      </dependency>
      
      <dependency>
        <groupId>org.jboss.fresh</groupId>
  	<artifactId>fresh-vfs</artifactId>
      </dependency>
      
      <dependency>
        <groupId>org.jboss.fresh</groupId>
  	<artifactId>fresh-threadpool</artifactId>
      </dependency>
      
       <dependency>
        <groupId>xalan</groupId>
        <artifactId>serializer</artifactId>
        <optional>true</optional>
      </dependency>

      <dependency>
        <groupId>xalan</groupId>
        <artifactId>xalan</artifactId>
        <optional>true</optional>
      </dependency>

      <dependency>
        <groupId>apache-xerces</groupId>
        <artifactId>xercesImpl</artifactId>
        <optional>true</optional>
      </dependency>    
			<dependency>
			  <groupId>javax.ejb</groupId>
			  <artifactId>ejb-api</artifactId>
			</dependency>
			<dependency>
			  <groupId>commons-compress</groupId>
			  <artifactId>commons-compress</artifactId>
			</dependency>
			
				
			<dependency>
			  <groupId>javax.transaction</groupId>
			  <artifactId>jta</artifactId>
			  <optional>true</optional>
			</dependency>

<dependency>
  <groupId>bsf</groupId>
  <artifactId>bsf</artifactId>
</dependency>
<dependency>
  <groupId>gnu-regexp</groupId>
  <artifactId>gnu-regexp</artifactId>
</dependency>
  </dependencies>
  
</project>