-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
104 lines (89 loc) · 2.75 KB
/
pom.xml
File metadata and controls
104 lines (89 loc) · 2.75 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
93
94
95
96
97
98
99
100
101
102
103
104
<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>
<groupId>edu.stanford.epad.plugins.sample-plugin</groupId>
<artifactId>sampleplugin</artifactId>
<version>1.1</version>
<name>ePAD SamplePlugin Plugin</name>
<packaging>jar</packaging>
<repositories>
<repository>
<id>lib</id>
<name>lib</name>
<releases>
<enabled>true</enabled>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>file://${project.basedir}/lib</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<matlab.version>R2013b</matlab.version>
<aimapi.version>1.0</aimapi.version>
</properties>
<dependencies>
<!-- epad-common contains plugin infrastructure code -->
<dependency>
<groupId>edu.stanford.epad</groupId>
<artifactId>epad-common</artifactId>
<version>1.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/epad-common-1.1.jar</systemPath>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- This is in a local project repository (in ./lib) because we could
not find a public Maven repository containing it. -->
<dependency>
<groupId>com.matlab</groupId>
<artifactId>javabuilder</artifactId>
<version>${matlab.version}</version>
</dependency>
<!-- Contains version-dependent MATLAB-generated Java code used by the
plugin; stored in this project repository in ./lib. -->
<dependency>
<groupId>edu.stanford.epad.plugins.sampleplugin</groupId>
<artifactId>modifyroi_java</artifactId>
<version>${matlab.version}</version>
</dependency>
<dependency>
<groupId>edu.stanford.hakan.aim4api</groupId>
<artifactId>aimapi</artifactId>
<version>${aimapi.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/aimapi-1.0.jar</systemPath>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>