<?xml version="1.0"?><project>
  <parent>
    <artifactId>jboss-naming</artifactId>
    <groupId>org.jboss</groupId>
    <version>5.0.0.Beta3</version>
    <relativePath>../build/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jnp-client</artifactId>
  <name>JBoss Naming Client</name>
  <version>5.0.0.Beta3</version>
  <description>The JBoss Naming Client</description>
  <url>http://www.jboss.org</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.1</version>
        <executions>
          <execution>
            <id>buildjar</id>
            <phase>package</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <jar jarfile="${basedir}/target/jnp-client-5.0.0.Beta3.jar" update="true" manifest="${basedir}/../jnpserver/src/etc/default.mf">
                  <fileset dir="${basedir}/../jnpserver/target/classes">
                    <include name="org/jnp/interfaces/**"></include>
                    <include name="org/jboss/naming/**"></include>
                  </fileset>
                  <fileset file="${basedir}/JBossORG-EULA.txt"></fileset>
                </jar>
              </tasks>
            </configuration>
          </execution>
        </executions>
        <inherited>true</inherited>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>apache-log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
    </dependency>
    <dependency>
      <groupId>jboss</groupId>
      <artifactId>jboss-common-core</artifactId>
      <version>2.0.2.GA</version>
    </dependency>
    <dependency>
      <groupId>jboss</groupId>
      <artifactId>jboss-logging-spi</artifactId>
      <version>2.0.2.GA</version>
    </dependency>
    <dependency>
      <groupId>jboss</groupId>
      <artifactId>jboss-logging-log4j</artifactId>
      <version>2.0.2.GA</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>