-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
61 lines (52 loc) · 1.95 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
58
59
60
61
<?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>
<parent>
<groupId>org.fenixedu</groupId>
<artifactId>web-library-project</artifactId>
<version>3.0.0-beta1</version>
</parent>
<artifactId>bennu-modular-rendering</artifactId>
<version>DEV-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Bennu Modular Rendering</name>
<url>http://fenixedu.org</url>
<inceptionYear>2016</inceptionYear>
<properties>
<version.javax.servlet.jsp.jsp.api>2.2.1-b03</version.javax.servlet.jsp.jsp.api>
<version.com.mitchellbosecke.pebble>2.3.0</version.com.mitchellbosecke.pebble>
</properties>
<licenses>
<license>
<name>GNU Lesser General Public License v3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:bennu/application/bennu-modular-rendering.git</connection>
<developerConnection>scm:git:[email protected]:bennu/application/bennu-modular-rendering</developerConnection>
<url>https://repo.dsi.tecnico.ulisboa.pt/bennu/application/bennu-modular-rendering</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${version.javax.servlet.jsp.jsp.api}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mitchellbosecke</groupId>
<artifactId>pebble</artifactId>
<version>${version.com.mitchellbosecke.pebble}</version>
<optional>true</optional>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
</repositories>
</project>