forked from sakaicontrib/evaluation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
282 lines (266 loc) · 11 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>org.sakaiproject</groupId>
<artifactId>evaluation</artifactId>
<name>Sakai Evaluation Project</name>
<description>
Online Course and Instructor Ratings
The Evaluation System is a tool that runs under Sakai version 2.3 or higher. The
Evaluation System is used to conduct formative and summative (end of term)
evaluations and review the results. An evaluation consists of a series of scaled
and/or free text questions, which are delivered to students over a fixed time
period (typically a few days).
The evaluation system allows colleges, departments, and instructors to manage
their own body of questions which are part of a combined end of term evaluation.
This allows colleges and departments within a larger institution to collect
targeted information from their students, while preserving a consistent set of
questions used through the institution.
Evaluation results can easily be reviewed within a single course, across colleges
or departments, or across the entire university. Results can be reviewed for a
single evaluation covering a short time period, or can be displayed for a series
of evaluations conducted across a larger time period.
The evaluation system contacts students to notify them of upcoming evaluations
automatically, and to remind students to complete an ongoing evaluation. The
notification scheme is intended to increase the response rate.
</description>
<url>http://bugs.sakaiproject.org/confluence/display/EVALSYS/Home</url>
<packaging>pom</packaging>
<version>23-SNAPSHOT</version><!--eval.version-->
<inceptionYear>2005</inceptionYear>
<parent>
<groupId>org.sakaiproject</groupId>
<artifactId>master</artifactId>
<version>23-SNAPSHOT</version>
</parent>
<properties>
<evalsys.pom.basedir>${project.basedir}</evalsys.pom.basedir>
<evalsys.project.name>${project.name}</evalsys.project.name>
<evalsys.project.year>${project.inceptionYear}</evalsys.project.year>
</properties>
<modules>
<module>sakai-evaluation-api</module>
<module>sakai-evaluation-impl</module>
<module>sakai-evaluation-tool</module>
</modules>
<profiles>
<profile>
<id>snapshots</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>snapshots</name>
</property>
</activation>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>tool</id>
<activation>
<property><name>tool</name></property>
</activation>
<modules>
<module>tool</module>
</modules>
</profile>
<profile>
<id>api</id>
<activation>
<property><name>api</name></property>
</activation>
<modules>
<module>api</module>
</modules>
</profile>
<profile>
<id>ddl</id>
<activation>
<property><name>ddl</name></property>
</activation>
<modules>
<module>impl/src/ddl</module>
</modules>
</profile>
</profiles>
<!-- handles the management of all related dependencies -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.sakaiproject.evaluation</groupId>
<artifactId>sakai-evaluation-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sakaiproject.evaluation</groupId>
<artifactId>sakai-evaluation-impl</artifactId>
<version>${project.version}</version>
</dependency>
<!-- needed until EB is in the Sakai master dependency management -->
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
<artifactId>entitybroker-api</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
<artifactId>entitybroker-utils</artifactId>
<version>${sakai.version}</version>
</dependency>
<dependency>
<groupId>org.sakaiproject.genericdao</groupId>
<artifactId>generic-dao</artifactId>
<version>${sakai.genericdao.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- Spring & Hibernate -->
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<!-- needed by hibernate unit tests -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
</dependencies>
<!-- Project developers -->
<developers>
<developer>
<id>[email protected]</id>
<name>Aaron Zeckoski</name>
<email>[email protected]</email>
<url>http://tinyurl.com/azprofile</url>
<organization>UNICON</organization>
<organizationUrl>http://unicon.net/</organizationUrl>
<roles>
<role>Project Manager</role>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<issueManagement>
<system>JIRA</system>
<url>http://jira.sakaiproject.org/jira/browse/EVALSYS</url>
</issueManagement>
<!-- define the license -->
<licenses>
<license>
<name>Apache License 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<comments>For opensource use</comments>
</license>
<license>
<name>Creative Commons Attribution 3.0</name>
<url>http://creativecommons.org/licenses/by-sa/3.0/</url>
<comments>For commercial use</comments>
</license>
</licenses>
<!-- define source code repository location -->
<scm>
<connection>
scm:svn:https://source.sakaiproject.org/contrib/evaluation/trunk/
</connection>
<developerConnection>
scm:svn:https://source.sakaiproject.org/contrib/evaluation/trunk/
</developerConnection>
<url>https://source.sakaiproject.org/viewsvn/evaluation/?root=contrib</url>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>${evalsys.pom.basedir}/LICENSE_HEADER</header>
<strictCheck>true</strictCheck>
<failIfMissing>true</failIfMissing>
<properties>
<name>${evalsys.project.name}</name>
<year>${evalsys.project.year}</year>
<holder>Sakai Foundation</holder>
</properties>
<excludes>
<exclude>target/**</exclude>
<exclude>m2-target/**</exclude>
<exclude>bin/**</exclude>
<exclude>src/ddl/**</exclude>
<exclude>.idea/**</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/js/facebox/**</exclude>
<exclude>**/js/fluid/**</exclude>
<exclude>**/js/jquery/**</exclude>
<exclude>**/js/ui.*</exclude>
<exclude>**/js/yahoo*</exclude>
<exclude>**/css/jquery/**</exclude>
<exclude>**/css/scss/**</exclude>
<exclude>LICENSE*</exclude>
<exclude>**/README</exclude>
<exclude>.recommenders/**</exclude>
<exclude>**/overlays/**</exclude>
</excludes>
<mapping>
<tag>DYNASCRIPT_STYLE</tag>
</mapping>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<!-- Used to replace the headers of files with proper licenses - http://code.google.com/p/maven-license-plugin -
Run mvn license:format to fix up licenses on all files in the project -->
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>