-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
142 lines (134 loc) · 5.6 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
135
136
137
138
139
140
141
142
<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.5.2</version>
</parent>
<groupId>pt.ist</groupId>
<artifactId>siadap</artifactId>
<name>SIADAP</name>
<version>DEV-SNAPSHOT</version>
<packaging>jar</packaging>
<scm>
<connection>scm:git:[email protected]:software/tecnicolisboa/siadap.git</connection>
<developerConnection>scm:git:[email protected]:software/tecnicolisboa/siadap</developerConnection>
<url>https://repo.dsi.tecnico.ulisboa.pt/software/tecnicolisboa/siadap</url>
<tag>HEAD</tag>
</scm>
<properties>
<version.org.fenixedu.bennu.core>6.1.0</version.org.fenixedu.bennu.core>
<version.org.fenixedu.bennu.renderers>6.0.1</version.org.fenixedu.bennu.renderers>
<version.org.fenixedu.messaging>4.0.0</version.org.fenixedu.messaging>
<version.org.fenixedu.organization>4.0.0</version.org.fenixedu.organization>
<version.org.fenixedu.workflow>4.0.0</version.org.fenixedu.workflow>
<version.jfree.jfreechart>0.9.18</version.jfree.jfreechart>
<version.net.sf.jasperreports>3.6.0</version.net.sf.jasperreports>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.alexnederlof</groupId>
<artifactId>jasperreports-plugin</artifactId>
<version>1.5.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jasper</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${version.net.sf.jasperreports}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
</dependencies>
<configuration>
<compiler>module.siadap.util.FenixJasperCompiler</compiler>
<outputDirectory>${project.build.outputDirectory}/reports</outputDirectory>
<numberOfThreads>${jasper.threads}</numberOfThreads>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-core</artifactId>
<version>${version.org.fenixedu.bennu.core}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-renderers</artifactId>
<version>${version.org.fenixedu.bennu.renderers}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-struts</artifactId>
<version>${version.org.fenixedu.bennu.renderers}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>messaging-core</artifactId>
<version>${version.org.fenixedu.messaging}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>organization</artifactId>
<version>${version.org.fenixedu.organization}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>workflow</artifactId>
<version>${version.org.fenixedu.workflow}</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>3.6.0</version>
<exclusions>
<exclusion>
<artifactId>jdtcore</artifactId>
<groupId>eclipse</groupId>
</exclusion>
<exclusion>
<artifactId>commons-beanutils</artifactId>
<groupId>commons-beanutils</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-legacy-tools</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
<repository>
<id>dsi-maven-artifacts</id>
<url>https://fenix-ashes.ist.utl.pt/nexus/repository/dsi-private-repo</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>dsi-maven-artifacts</id>
<url>https://fenix-ashes.tecnico.ulisboa.pt/nexus/repository/dsi-private-repo</url>
</repository>
<!-- <repository>
<id>fenixedu-contrib-releases</id>
<url>https://repo.fenixedu.org/fenixedu-contrib-releases</url>
</repository>-->
</distributionManagement>
</project>