Last active
December 18, 2015 04:19
-
-
Save cchacin/5724885 to your computer and use it in GitHub Desktop.
JavaEE 6 -> TomEE 1.5.2 pom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.example</groupId> | |
| <artifactId>api</artifactId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <dependencies> | |
| <!-- JEE6 --> | |
| <dependency> | |
| <groupId>javax</groupId> | |
| <artifactId>javaee-api</artifactId> | |
| <version>6.0</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <!-- Bool --> | |
| <dependency> | |
| <groupId>com.lordofthejars</groupId> | |
| <artifactId>bool</artifactId> | |
| <version>0.9.0</version> | |
| </dependency> | |
| <!-- Lombok --> | |
| <dependency> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| <version>1.12.2</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <!-- Guava --> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>15.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.assertj</groupId> | |
| <artifactId>assertj-guava</artifactId> | |
| <version>1.0.0</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- JUnit --> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.11</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Mockito --> | |
| <dependency> | |
| <groupId>org.mockito</groupId> | |
| <artifactId>mockito-core</artifactId> | |
| <version>1.9.5</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Cucumber --> | |
| <dependency> | |
| <groupId>info.cukes</groupId> | |
| <artifactId>cucumber-junit</artifactId> | |
| <version>1.1.5</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>info.cukes</groupId> | |
| <artifactId>cucumber-picocontainer</artifactId> | |
| <version>1.1.5</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Fest --> | |
| <dependency> | |
| <groupId>org.easytesting</groupId> | |
| <artifactId>fest-assert-core</artifactId> | |
| <version>2.0M10</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <finalName>project-api</finalName> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>2.1.1</version> | |
| <configuration> | |
| <failOnMissingWebXml>false</failOnMissingWebXml> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.3.2</version> | |
| <configuration> | |
| <source>1.6</source> | |
| <target>1.6</target> | |
| <encoding>UTF-8</encoding> | |
| <proc>none</proc> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.openejb.maven</groupId> | |
| <artifactId>tomee-maven-plugin</artifactId> | |
| <version>1.5.2</version> | |
| <configuration> | |
| <tomeeClassifier>plus</tomeeClassifier> | |
| <tomeeHttpPort>8080</tomeeHttpPort> | |
| <simpleLog>true</simpleLog> | |
| <synchronization> | |
| <extensions> | |
| <extension>.class</extension> | |
| </extensions> | |
| </synchronization> | |
| <reloadOnUpdate>true</reloadOnUpdate> | |
| <libs> | |
| <lib>org.codehaus.jackson:jackson-jaxrs:1.9.12</lib> | |
| </libs> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project><?xml version="1.0" encoding="UTF-8"?> | |
| <project | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.example</groupId> | |
| <artifactId>api</artifactId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <dependencies> | |
| <!-- JEE6 --> | |
| <dependency> | |
| <groupId>javax</groupId> | |
| <artifactId>javaee-api</artifactId> | |
| <version>6.0</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <!-- Bool --> | |
| <dependency> | |
| <groupId>com.lordofthejars</groupId> | |
| <artifactId>bool</artifactId> | |
| <version>0.9.0</version> | |
| </dependency> | |
| <!-- Lombok --> | |
| <dependency> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| <version>0.12.0</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <!-- Guava --> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>15.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.assertj</groupId> | |
| <artifactId>assertj-guava</artifactId> | |
| <version>1.0.0</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- JUnit --> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.11</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Mockito --> | |
| <dependency> | |
| <groupId>org.mockito</groupId> | |
| <artifactId>mockito-core</artifactId> | |
| <version>1.9.5</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Cucumber --> | |
| <dependency> | |
| <groupId>info.cukes</groupId> | |
| <artifactId>cucumber-junit</artifactId> | |
| <version>1.1.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>info.cukes</groupId> | |
| <artifactId>cucumber-picocontainer</artifactId> | |
| <version>1.1.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Fest --> | |
| <dependency> | |
| <groupId>org.easytesting</groupId> | |
| <artifactId>fest-assert-core</artifactId> | |
| <version>2.0M10</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <finalName>project-api</finalName> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>2.1.1</version> | |
| <configuration> | |
| <failOnMissingWebXml>false</failOnMissingWebXml> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.3.2</version> | |
| <configuration> | |
| <source>1.6</source> | |
| <target>1.6</target> | |
| <encoding>UTF-8</encoding> | |
| <proc>none</proc> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.openejb.maven</groupId> | |
| <artifactId>tomee-maven-plugin</artifactId> | |
| <version>1.5.2</version> | |
| <configuration> | |
| <tomeeClassifier>plus</tomeeClassifier> | |
| <tomeeHttpPort>8080</tomeeHttpPort> | |
| <simpleLog>true</simpleLog> | |
| <synchronization> | |
| <extensions> | |
| <extension>.class</extension> | |
| </extensions> | |
| </synchronization> | |
| <reloadOnUpdate>true</reloadOnUpdate> | |
| <libs> | |
| <lib>org.codehaus.jackson:jackson-jaxrs:1.9.12</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