This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
58 lines (58 loc) · 1.94 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
<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>org.imsglobal.community</groupId>
<artifactId>openoperator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>OpenOperator</name>
<repositories>
<repository>
<id>www2.ph.ed.ac.uk</id>
<url>http://www2.ph.ed.ac.uk/maven2</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<description>A library of common QTI custom operators and documentation to enable compatible cross-vendor and cross-language scoring implementations.</description>
<scm>
<url>https://github.com/zackpierce/openoperator</url>
<connection>scm:git:[email protected]:zackpierce/openoperator.git</connection>
<developerConnection>scm:git:[email protected]:zackpierce/openoperator.git</developerConnection>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zackpierce</id>
<name>Zack Pierce</name>
<email>zacharypierce[at]gmail.com</email>
<organization>Measured Progress</organization>
<organizationUrl>http://www.measuredprogress.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>uk.ac.ed.ph.qtiworks</groupId>
<artifactId>qtiworks-jqtiplus</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
</project>