Project

General

Profile

1
<?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>eu.dnetlib</groupId>
7
        <artifactId>dnet-parent</artifactId>
8
        <version>1.0.0-SNAPSHOT</version>
9
    </parent>
10

    
11
    <artifactId>icm-iis-3rdparty-cermine-web</artifactId>
12
    <version>1.0-SNAPSHOT</version>
13
    <packaging>war</packaging>
14
    <name>cermine web application</name>
15

    
16
    <dependencies>
17

    
18
        <dependency>
19
            <groupId>javax.servlet.jsp</groupId>
20
            <artifactId>jsp-api</artifactId>
21
            <version>2.1</version>
22
            <scope>provided</scope>
23
        </dependency>
24
        <dependency>
25
            <groupId>javax.servlet</groupId>
26
            <artifactId>servlet-api</artifactId>
27
            <version>2.5</version>
28
            <scope>provided</scope>
29
        </dependency>
30
        <dependency>
31
            <groupId>javax.servlet</groupId>
32
            <artifactId>jstl</artifactId>
33
            <version>1.2</version>
34
        </dependency>
35

    
36
        <dependency>
37
            <groupId>junit</groupId>
38
            <artifactId>junit</artifactId>
39
            <scope>test</scope>
40
            <version>4.8.2</version>
41
        </dependency>
42

    
43
        <dependency>
44
            <groupId>org.springframework</groupId>
45
            <artifactId>spring-context</artifactId>
46
            <version>3.1.0.RELEASE</version>
47
        </dependency>
48

    
49
        <dependency>
50
            <groupId>org.springframework</groupId>
51
            <artifactId>spring-web</artifactId>
52
            <version>3.1.0.RELEASE</version>
53
        </dependency>
54
        <dependency>
55
            <groupId>org.springframework</groupId>
56
            <artifactId>spring-webmvc</artifactId>
57
            <version>3.1.0.RELEASE</version>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.springframework</groupId>
61
            <artifactId>spring-beans</artifactId>
62
            <version>3.1.0.RELEASE</version>
63
            <type>jar</type>
64
        </dependency>
65
               
66
        <dependency>
67
            <groupId>commons-fileupload</groupId>
68
            <artifactId>commons-fileupload</artifactId>
69
            <version>1.2.2</version>
70
        </dependency>
71
        
72
        <dependency>
73
            <groupId>org.codehaus.jackson</groupId>
74
            <artifactId>jackson-jaxrs</artifactId>
75
            <version>1.8.5</version>
76
        </dependency>
77
        
78
        <dependency>
79
            <groupId>jaxen</groupId>
80
            <artifactId>jaxen</artifactId>
81
            <version>1.1.4</version>
82
        </dependency>
83
        <dependency>
84
            <groupId>org.jdom</groupId>
85
            <artifactId>jdom</artifactId>
86
            <version>1.1</version>
87
        </dependency>
88
        <dependency>
89
            <groupId>org.slf4j</groupId>
90
            <artifactId>jcl-over-slf4j</artifactId>
91
            <version>1.6.4</version>
92
        </dependency>
93
        <dependency>
94
            <groupId>pl.edu.icm.cermine</groupId>
95
            <artifactId>cermine-impl</artifactId>
96
            <version>1.2-SNAPSHOT</version>
97
            <type>jar</type>
98
        </dependency>
99
        <dependency>
100
            <groupId>pl.edu.icm.sedno</groupId>
101
            <artifactId>sedno-tools</artifactId>
102
            <version>1.2.24</version>
103
            <exclusions>
104
                <exclusion>
105
                    <groupId>org.springframework</groupId>
106
                    <artifactId>*</artifactId>
107
                </exclusion>
108
                <exclusion>
109
                    <groupId>org.springframework.security</groupId>
110
                    <artifactId>*</artifactId>								
111
                </exclusion>
112
                <exclusion>
113
                    <groupId>org.hibernate</groupId>
114
                    <artifactId>*</artifactId>                              
115
                </exclusion>						
116
                <exclusion>
117
                    <groupId>org.hibernate.javax.persistence</groupId>
118
                    <artifactId>*</artifactId>                              
119
                </exclusion>                               		
120
            </exclusions>
121
        </dependency>
122
    </dependencies>
123

    
124
    <build>
125
        <resources>
126
            <resource>
127
                <directory>src/main/resources</directory>
128
                <filtering>true</filtering>
129
                <includes>
130
                    <include>cermine-web.version.properties</include>
131
                </includes>
132
            </resource>
133
            <resource>
134
                <directory>src/main/resources</directory>
135
                <filtering>false</filtering>
136
                <excludes>
137
                    <exclude>cermine-web.version.properties</exclude>
138
                </excludes>
139
            </resource>
140
        </resources>
141
        <plugins>
142

    
143
        </plugins>
144
    </build>
145

    
146
    <repositories>
147
        <repository>
148
            <id>yadda</id>
149
            <name>YADDA project repository</name>
150
            <url>http://maven.icm.edu.pl/artifactory/repo</url>
151
        </repository>
152
    </repositories>
153
    <properties>
154
        <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
155
        <buildTimestamp>${maven.build.timestamp}</buildTimestamp>
156
        <netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
157
    </properties>
158

    
159
</project>
(3-3/3)