This repository has been archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpom.xml
57 lines (49 loc) · 1.93 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>softwaremill-faces</artifactId>
<name>Softwaremill JSF Extensions</name>
<parent>
<groupId>com.softwaremill.common</groupId>
<artifactId>softwaremill-common-parent</artifactId>
<version>81-SNAPSHOT</version>
</parent>
<dependencies>
<!-- Inter-modules dependencies -->
<dependency>
<groupId>com.softwaremill.common</groupId>
<artifactId>softwaremill-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.softwaremill.common</groupId>
<artifactId>softwaremill-cdi</artifactId>
<version>${project.version}</version>
</dependency>
<!-- CDI (JSR-299) -->
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- JEE -->
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<!-- EL-impl: for creating EL contexts outside of faces requests -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-ri</artifactId>
<scope>provided</scope>
</dependency>
<!-- FileUploadRenderer inherits from TextRenderer from this lib. -->
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>