forked from FenixEdu/bennu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
134 lines (127 loc) · 5.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?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>fenix-framework-project</artifactId>
<version>2.3.0</version>
</parent>
<artifactId>bennu</artifactId>
<name>Bennu Framework</name>
<version>4.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<!-- ************************************************************************************************ -->
<!-- * DEPENDENCIES VERSIONS * -->
<!-- * Please keep this list sorted alphabetically or you will feel the wrath of a Bennu Developer * -->
<!-- ************************************************************************************************ -->
<version.javax.ws.rs.javax.ws.rs.api>2.0</version.javax.ws.rs.javax.ws.rs.api>
<version.joda.time.joda.time>2.9.2</version.joda.time.joda.time>
<version.net.sf.cron4j.cron4j>2.2.5</version.net.sf.cron4j.cron4j>
<version.org.fenixedu.fenixedu.commons>1.1.1</version.org.fenixedu.fenixedu.commons>
<version.org.jasig.cas.client.core>3.4.1</version.org.jasig.cas.client.core>
<version.org.springframework.spring.webmvc>4.2.5.RELEASE</version.org.springframework.spring.webmvc>
<version.ch.qos.logback.logback.classic>1.1.3</version.ch.qos.logback.logback.classic>
<version.com.google.code.gson.gson>2.6.1</version.com.google.code.gson.gson>
<version.com.google.guava.guava>19.0</version.com.google.guava.guava>
<version.com.mitchellbosecke.pebble>2.3.0</version.com.mitchellbosecke.pebble>
<version.org.apache.tika.tika-core>1.11</version.org.apache.tika.tika-core>
</properties>
<scm>
<connection>scm:git:[email protected]:fenixedu/bennu.git</connection>
<developerConnection>scm:git:[email protected]:fenixedu/bennu.git</developerConnection>
<url>http://fenixedu.github.io/bennu</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${version.com.google.code.gson.gson}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${version.com.google.guava.guava}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>fenixedu-commons</artifactId>
<version>${version.org.fenixedu.fenixedu.commons}</version>
</dependency>
<dependency>
<groupId>org.jasig.cas.client</groupId>
<artifactId>cas-client-core</artifactId>
<version>${version.org.jasig.cas.client.core}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${version.joda.time.joda.time}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${version.javax.ws.rs.javax.ws.rs.api}</version>
</dependency>
<dependency>
<groupId>net.sf.cron4j</groupId>
<artifactId>cron4j</artifactId>
<version>${version.net.sf.cron4j.cron4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.ch.qos.logback.logback.classic}</version>
</dependency>
<dependency>
<groupId>com.mitchellbosecke</groupId>
<artifactId>pebble</artifactId>
<version>${version.com.mitchellbosecke.pebble}</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>${version.org.apache.tika.tika-core}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${version.org.springframework.spring.webmvc}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${version.org.springframework.spring.webmvc}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
</repositories>
<modules>
<module>bennu-core</module>
<module>bennu-io</module>
<module>bennu-scheduler</module>
<module>bennu-toolkit</module>
<module>bennu-portal</module>
<module>bennu-cas-client</module>
<module>bennu-admin</module>
<module>bennu-maven-plugin</module>
<module>bennu-oauth</module>
<module>bennu-spring</module>
<module>bennu-test</module>
<module>default-theme</module>
</modules>
</project>