Skip to content

Instantly share code, notes, and snippets.

@rmannibucau
Created July 16, 2014 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmannibucau/e21c456a6dc494796228 to your computer and use it in GitHub Desktop.
Save rmannibucau/e21c456a6dc494796228 to your computer and use it in GitHub Desktop.
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.rmannibucau</groupId>
<artifactId>my-mail-mdb</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-javamail_1.4_spec</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0-5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.javamail</groupId>
<artifactId>geronimo-javamail_1.4_mail</artifactId>
<version>1.8.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.ironjacamar</groupId>
<artifactId>mail</artifactId>
<version>1.0.9.Final</version>
<scope>system</scope>
<systemPath>${project.basedir}/ironjacamar-mail/ironjacamar-mail.jar</systemPath>
<exclusions>
<exclusion>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>3.1.0.GA</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-core</artifactId>
<version>4.7.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jboss-maven2-release-repository</id>
<name>JBoss public repo</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<!-- to get rar and jar you can use it (in another pom or removing the system dependency)
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-rar</id>
<goals>
<goal>unpack</goal> <!-- get the jar, "copy" would get the rar -->
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.ironjacamar</groupId>
<artifactId>mail</artifactId>
<version>1.0.9.Final</version>
<type>rar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.basedir}/ironjacamar-mail</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
-->
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment