-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpom.xml
More file actions
92 lines (85 loc) · 3.46 KB
/
Copy pathpom.xml
File metadata and controls
92 lines (85 loc) · 3.46 KB
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
<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>
<relativePath />
</parent>
<artifactId>workflow</artifactId>
<version>4.2.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Workflow</name>
<properties>
<version.org.fenixedu.bennu.core>6.1.0</version.org.fenixedu.bennu.core>
<version.org.fenixedu.dashboard>3.0.0</version.org.fenixedu.dashboard>
<version.javax.servlet.jsp>2.1</version.javax.servlet.jsp>
<version.pt.ist.fenix-legacy-tools>2.1.0</version.pt.ist.fenix-legacy-tools>
<version.pt.ist.smartsigner>2.0.0</version.pt.ist.smartsigner>
<version.org.fenixedu.employer>1.0.0</version.org.fenixedu.employer>
</properties>
<scm>
<connection>scm:git:git@github.com:fenixedu/workflow.git</connection>
<developerConnection>scm:git:git@github.com:fenixedu/workflow.git</developerConnection>
<url>https://github.com/FenixEdu/workflow</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://jira.fenixedu.org/browse/FWKW</url>
</issueManagement>
<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-io</artifactId>
<version>${version.org.fenixedu.bennu.core}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-scheduler</artifactId>
<version>${version.org.fenixedu.bennu.core}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>dashboard</artifactId>
<version>${version.org.fenixedu.dashboard}</version>
</dependency>
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-legacy-tools</artifactId>
<version>${version.pt.ist.fenix-legacy-tools}</version>
</dependency>
<dependency>
<groupId>pt.ist.smartsigner</groupId>
<artifactId>sdk-java</artifactId>
<version>${version.pt.ist.smartsigner}</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${version.javax.servlet.jsp}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-spring</artifactId>
<version>${version.org.fenixedu.bennu.core}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>employer</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
</repositories>
</project>