Skip to content

Instantly share code, notes, and snippets.

@rmannibucau
Created June 9, 2017 15:49
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/8dba288509366e6e5521994bab37eaf3 to your computer and use it in GitHub Desktop.
Save rmannibucau/8dba288509366e6e5521994bab37eaf3 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>app</groupId>
<artifactId>app</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.apache.tomee</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0-1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomee.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>7.0.3</version>
<configuration>
<tomeeClassifier>plus</tomeeClassifier>
<libs>
<lib>org.apache.activemq:activemq-spring:5.14.3</lib>
<lib>org.apache.xbean:xbean-spring:4.5</lib>
<lib>org.springframework:spring-context:4.3.5.RELEASE</lib>
<lib>org.springframework:spring-aop:4.3.5.RELEASE</lib>
<lib>org.springframework:spring-beans:4.3.5.RELEASE</lib>
<lib>org.springframework:spring-core:4.3.5.RELEASE</lib>
<lib>org.springframework:spring-expression:4.3.5.RELEASE</lib>
</libs>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment