1 |
24284
|
dominika.t
|
<?xml version="1.0"?>
|
2 |
|
|
<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">
|
3 |
|
|
<modelVersion>4.0.0</modelVersion>
|
4 |
|
|
|
5 |
|
|
<parent>
|
6 |
|
|
<groupId>pl.edu.icm.cermine</groupId>
|
7 |
|
|
<artifactId>cermine-parent</artifactId>
|
8 |
|
|
<version>1.2-SNAPSHOT</version>
|
9 |
|
|
</parent>
|
10 |
|
|
|
11 |
|
|
<groupId>pl.edu.icm.cermine</groupId>
|
12 |
|
|
<version>1.2-SNAPSHOT</version>
|
13 |
|
|
<artifactId>cermine-web</artifactId>
|
14 |
|
|
<packaging>war</packaging>
|
15 |
|
|
<name>CERMINE Web Interface - ${project.version}</name>
|
16 |
|
|
|
17 |
|
|
<dependencies>
|
18 |
|
|
|
19 |
|
|
<dependency>
|
20 |
|
|
<groupId>javax.servlet.jsp</groupId>
|
21 |
|
|
<artifactId>jsp-api</artifactId>
|
22 |
|
|
<version>2.1</version>
|
23 |
|
|
<scope>provided</scope>
|
24 |
|
|
</dependency>
|
25 |
|
|
<dependency>
|
26 |
|
|
<groupId>javax.servlet</groupId>
|
27 |
|
|
<artifactId>servlet-api</artifactId>
|
28 |
|
|
<version>2.5</version>
|
29 |
|
|
<scope>provided</scope>
|
30 |
|
|
</dependency>
|
31 |
|
|
<dependency>
|
32 |
|
|
<groupId>javax.servlet</groupId>
|
33 |
|
|
<artifactId>jstl</artifactId>
|
34 |
|
|
<version>1.2</version>
|
35 |
|
|
</dependency>
|
36 |
|
|
|
37 |
|
|
<dependency>
|
38 |
|
|
<groupId>junit</groupId>
|
39 |
|
|
<artifactId>junit</artifactId>
|
40 |
|
|
<scope>test</scope>
|
41 |
|
|
</dependency>
|
42 |
|
|
|
43 |
|
|
<dependency>
|
44 |
|
|
<groupId>org.springframework</groupId>
|
45 |
|
|
<artifactId>spring-context</artifactId>
|
46 |
|
|
</dependency>
|
47 |
|
|
|
48 |
|
|
<dependency>
|
49 |
|
|
<groupId>org.springframework</groupId>
|
50 |
|
|
<artifactId>spring-web</artifactId>
|
51 |
|
|
<version>${spring.version}</version>
|
52 |
|
|
</dependency>
|
53 |
|
|
|
54 |
|
|
<dependency>
|
55 |
|
|
<groupId>org.springframework</groupId>
|
56 |
|
|
<artifactId>spring-webmvc</artifactId>
|
57 |
|
|
<version>${spring.version}</version>
|
58 |
|
|
</dependency>
|
59 |
|
|
|
60 |
|
|
<dependency>
|
61 |
|
|
<groupId>pl.edu.icm.sedno</groupId>
|
62 |
|
|
<artifactId>sedno-tools</artifactId>
|
63 |
|
|
<exclusions>
|
64 |
|
|
<exclusion>
|
65 |
|
|
<groupId>org.springframework</groupId>
|
66 |
|
|
<artifactId>*</artifactId>
|
67 |
|
|
</exclusion>
|
68 |
|
|
<exclusion>
|
69 |
|
|
<groupId>org.springframework.security</groupId>
|
70 |
|
|
<artifactId>*</artifactId>
|
71 |
|
|
</exclusion>
|
72 |
|
|
<exclusion>
|
73 |
|
|
<groupId>org.hibernate</groupId>
|
74 |
|
|
<artifactId>*</artifactId>
|
75 |
|
|
</exclusion>
|
76 |
|
|
<exclusion>
|
77 |
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
78 |
|
|
<artifactId>*</artifactId>
|
79 |
|
|
</exclusion>
|
80 |
|
|
</exclusions>
|
81 |
|
|
</dependency>
|
82 |
|
|
|
83 |
|
|
<dependency>
|
84 |
|
|
<groupId>commons-fileupload</groupId>
|
85 |
|
|
<artifactId>commons-fileupload</artifactId>
|
86 |
|
|
<version>1.2.2</version>
|
87 |
|
|
</dependency>
|
88 |
|
|
|
89 |
|
|
<dependency>
|
90 |
|
|
<groupId>org.codehaus.jackson</groupId>
|
91 |
|
|
<artifactId>jackson-jaxrs</artifactId>
|
92 |
|
|
<version>1.8.5</version>
|
93 |
|
|
</dependency>
|
94 |
|
|
|
95 |
|
|
<dependency>
|
96 |
|
|
<groupId>jaxen</groupId>
|
97 |
|
|
<artifactId>jaxen</artifactId>
|
98 |
|
|
<version>1.1.4</version>
|
99 |
|
|
</dependency>
|
100 |
|
|
<dependency>
|
101 |
|
|
<groupId>${project.groupId}</groupId>
|
102 |
|
|
<artifactId>cermine-impl</artifactId>
|
103 |
|
|
<version>${project.version}</version>
|
104 |
|
|
</dependency>
|
105 |
|
|
</dependencies>
|
106 |
|
|
|
107 |
|
|
<build>
|
108 |
|
|
<resources>
|
109 |
|
|
<resource>
|
110 |
|
|
<directory>src/main/resources</directory>
|
111 |
|
|
<filtering>true</filtering>
|
112 |
|
|
<includes>
|
113 |
|
|
<include>cermine-web.version.properties</include>
|
114 |
|
|
</includes>
|
115 |
|
|
</resource>
|
116 |
|
|
<resource>
|
117 |
|
|
<directory>src/main/resources</directory>
|
118 |
|
|
<filtering>false</filtering>
|
119 |
|
|
<excludes>
|
120 |
|
|
<exclude>cermine-web.version.properties</exclude>
|
121 |
|
|
</excludes>
|
122 |
|
|
</resource>
|
123 |
|
|
</resources>
|
124 |
|
|
<plugins>
|
125 |
|
|
|
126 |
|
|
</plugins>
|
127 |
|
|
</build>
|
128 |
|
|
|
129 |
|
|
<properties>
|
130 |
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
131 |
|
|
<buildTimestamp>${maven.build.timestamp}</buildTimestamp>
|
132 |
|
|
<netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
|
133 |
|
|
</properties>
|
134 |
|
|
|
135 |
|
|
</project>
|