-
Notifications
You must be signed in to change notification settings - Fork 56
/
pom.xml
131 lines (117 loc) · 3.96 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
<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>
<groupId>pt.ulisboa.tecnico.softeng.bank</groupId>
<artifactId>aula-dml</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>aula-dml</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.plugin>3.6.0</maven.compiler.plugin>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.junit.junit>4.12</version.junit.junit>
<version.org.slf4j>1.7.12</version.org.slf4j>
<version.ch.qos.logback>1.1.3</version.ch.qos.logback>
<version.fenixframework>2.6.2</version.fenixframework>
<fenix.framework.codeGeneratorClassName>pt.ist.fenixframework.backend.jvstmojb.codeGenerator.FenixCodeGeneratorOneBoxPerObject</fenix.framework.codeGeneratorClassName>
<fenix.framework.backend>jvstm-ojb</fenix.framework.backend>
</properties>
<build>
<plugins>
<!-- Compile -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<!-- Fénix Framework -->
<plugin>
<groupId>pt.ist</groupId>
<artifactId>ff-maven-plugin</artifactId>
<version>${version.fenixframework}</version>
<configuration>
<codeGeneratorClassName>${fenix.framework.codeGeneratorClassName}</codeGeneratorClassName>
<params>
<ptIstTxIntrospectorEnable>false</ptIstTxIntrospectorEnable>
</params>
</configuration>
<executions>
<execution>
<goals>
<goal>ff-generate-domain</goal>
<goal>ff-process-atomic-annotations</goal>
<goal>ff-test-process-atomic-annotations</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-framework-backend-jvstm-ojb-code-generator</artifactId>
<version>${version.fenixframework}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Fénix -->
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-framework-core-api</artifactId>
<version>${version.fenixframework}</version>
</dependency>
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-framework-core-consistency-predicates</artifactId>
<version>${version.fenixframework}</version>
</dependency>
<dependency>
<groupId>pt.ist</groupId>
<artifactId>fenix-framework-backend-${fenix.framework.backend}-runtime</artifactId>
<version>${version.fenixframework}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<!-- use this version to be compatible with fenix mysql lib -->
<version>5.1.47</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit.junit}</version>
<scope>test</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.org.slf4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.ch.qos.logback}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</pluginRepository>
</pluginRepositories>
</project>