Skip to content

Commit fd47eae

Browse files
committed
Basic POM structure
1 parent 16c29a4 commit fd47eae

File tree

4 files changed

+836
-0
lines changed

4 files changed

+836
-0
lines changed

ejb-module/pom.xml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<artifactId>bugreport-ejb-module</artifactId>
4+
<packaging>ejb</packaging>
5+
<name>Java EE Bug Report - EJB Module</name>
6+
7+
<parent>
8+
<groupId>org.java-ee-bugreport</groupId>
9+
<artifactId>parent-pom</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>..</relativePath>
12+
</parent>
13+
14+
<dependencyManagement>
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.jboss.arquillian</groupId>
18+
<artifactId>arquillian-bom</artifactId>
19+
<version>1.2.0.Final</version>
20+
<scope>import</scope>
21+
<type>pom</type>
22+
</dependency>
23+
</dependencies>
24+
</dependencyManagement>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>org.apache.logging.log4j</groupId>
29+
<artifactId>log4j-api</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.apache.logging.log4j</groupId>
33+
<artifactId>log4j-core</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.apache.logging.log4j</groupId>
37+
<artifactId>log4j-slf4j-impl</artifactId>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>org.eclipse.persistence</groupId>
42+
<artifactId>javax.persistence</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>javax</groupId>
46+
<artifactId>javaee-api</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>fish.payara.extras</groupId>
50+
<artifactId>payara-embedded-all</artifactId>
51+
<version>${payara.embedded.version}</version>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.jboss.shrinkwrap.resolver</groupId>
56+
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.jboss.arquillian.junit</groupId>
60+
<artifactId>arquillian-junit-container</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>fish.payara.arquillian</groupId>
64+
<artifactId>arquillian-payara-server-4-embedded</artifactId>
65+
</dependency>
66+
<dependency>
67+
<groupId>junit</groupId>
68+
<artifactId>junit</artifactId>
69+
</dependency>
70+
71+
<dependency>
72+
<groupId>org.apache.commons</groupId>
73+
<artifactId>commons-lang3</artifactId>
74+
</dependency>
75+
76+
</dependencies>
77+
78+
<build>
79+
<testResources>
80+
<testResource>
81+
<directory>src/test/resources</directory>
82+
<filtering>true</filtering>
83+
<includes>
84+
<include>**/*</include>
85+
</includes>
86+
</testResource>
87+
</testResources>
88+
</build>
89+
</project>

0 commit comments

Comments
 (0)