Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

    
6
    <parent>
7
        <groupId>eu.dnetlib</groupId>
8
        <artifactId>dnet45-parent</artifactId>
9
        <version>1.0.0-SNAPSHOT</version>
10
    </parent>
11
    <modelVersion>4.0.0</modelVersion>
12
    <groupId>eu.dnetlib</groupId>
13
    <artifactId>uoa-repository-manager-service</artifactId>
14
    <version>1.0.0-SNAPSHOT</version>
15
    <packaging>jar</packaging>
16

    
17

    
18
    <build>
19
        <plugins>
20
            <plugin>
21
                <groupId>org.apache.maven.plugins</groupId>
22
                <artifactId>maven-compiler-plugin</artifactId>
23
                <version>3.1</version>
24
                <configuration>
25
                    <source>1.8</source>
26
                    <target>1.8</target>
27
                    <encoding>UTF-8</encoding>
28
                </configuration>
29
            </plugin>
30

    
31
            <plugin>
32
                <artifactId>maven-war-plugin</artifactId>
33
                <version>2.6</version>
34
                <configuration>
35
                    <failOnMissingWebXml>false</failOnMissingWebXml>
36
                </configuration>
37
            </plugin>
38
            <!--<plugin>
39
                <groupId>cz.habarta.typescript-generator</groupId>
40
                <artifactId>typescript-generator-maven-plugin</artifactId>
41
                <version>1.29.366</version>
42
                <executions>
43
                    <execution>
44
                        <id>generate1</id>
45
                        <goals>
46
                            <goal>generate</goal>
47
                        </goals>
48
                        <configuration>
49
                            <jsonLibrary>jackson2</jsonLibrary>
50
                            <outputFileType>implementationFile</outputFileType>
51
                            <mapClasses>asClasses</mapClasses>
52
                            <classPatterns>
53
                                <pattern>eu.dnetlib.domain.data.*</pattern>
54
                            </classPatterns>
55
                            <outputFile>target/typeScriptClasses.ts</outputFile>
56
                            <outputKind>module</outputKind>
57
                        </configuration>
58
                    </execution>
59
                </executions>
60
            </plugin>-->
61
        </plugins>
62
    </build>
63

    
64
    <dependencies>
65

    
66
        <dependency>
67
            <groupId>org.springframework</groupId>
68
            <artifactId>spring-webmvc</artifactId>
69
            <version>${spring.version}</version>
70
        </dependency>
71

    
72
        <dependency>
73
            <groupId>org.hibernate</groupId>
74
            <artifactId>hibernate-validator-annotation-processor</artifactId>
75
            <version>4.1.0.Final</version>
76
        </dependency>
77

    
78
        <dependency>
79
            <groupId>log4j</groupId>
80
            <artifactId>log4j</artifactId>
81
            <version>(1.2, 1.5]</version>
82
            <scope>compile</scope>
83
        </dependency>
84

    
85
        <dependency>
86
            <groupId>eu.dnetlib</groupId>
87
            <artifactId>dnet-runtime</artifactId>
88
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
89
            <exclusions>
90
                <exclusion>  <!-- declare the exclusion here -->
91
                    <groupId>org.apache.geronimo.specs</groupId>
92
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
93
                </exclusion>
94
            </exclusions>
95
        </dependency>
96
<!--
97
        <dependency>
98
            <groupId>eu.dnetlib</groupId>
99
            <artifactId>uoa-utils</artifactId>
100
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
101
        </dependency>
102
-->
103

    
104
        <dependency>
105
            <groupId>eu.dnetlib</groupId>
106
            <artifactId>uoa-domain</artifactId>
107
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
108
            <exclusions>
109
                <exclusion>  <!-- declare the exclusion here -->
110
                    <groupId>cglib</groupId>
111
                    <artifactId>cglib</artifactId>
112
                </exclusion>
113
            </exclusions>
114
        </dependency>
115

    
116

    
117
        <dependency>
118
            <groupId>cglib</groupId>
119
            <artifactId>cglib-nodep</artifactId>
120
            <version>2.2</version>
121
        </dependency>
122

    
123
        <dependency>
124
            <groupId>eu.dnetlib</groupId>
125
            <artifactId>uoa-commons</artifactId>
126
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
127
        </dependency>
128
        <dependency>
129
            <groupId>eu.dnetlib</groupId>
130
            <artifactId>uoa-clients</artifactId>
131
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
132
        </dependency>
133
        <dependency>
134
            <groupId>eu.dnetlib</groupId>
135
            <artifactId>uoa-hcm</artifactId>
136
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
137
        </dependency>
138

    
139
        <dependency>
140
            <groupId>commons-io</groupId>
141
            <artifactId>commons-io</artifactId>
142
            <version>2.4</version>
143
        </dependency>
144

    
145
        <dependency>
146
            <groupId>se.kb</groupId>
147
            <artifactId>oai4j</artifactId>
148
            <version>[0.6b1,)</version>
149
        </dependency>
150
        <dependency>
151
            <groupId>xalan</groupId>
152
            <artifactId>xalan</artifactId>
153
            <version>2.7.2</version>
154
        </dependency>
155

    
156
        <dependency>
157
            <groupId>org.slf4j</groupId>
158
            <artifactId>slf4j-log4j12</artifactId>
159
            <version>1.5.6</version>
160
        </dependency>
161

    
162
        <dependency>
163
            <groupId>xerces</groupId>
164
            <artifactId>xercesImpl</artifactId>
165
            <version>2.11.0</version>
166
        </dependency>
167

    
168
        <dependency>
169
            <groupId>com.fasterxml.jackson.core</groupId>
170
            <artifactId>jackson-core</artifactId>
171
            <version>2.5.1</version>
172
            <scope>compile</scope>
173
        </dependency>
174
        <dependency>
175
            <groupId>com.fasterxml.jackson.core</groupId>
176
            <artifactId>jackson-databind</artifactId>
177
            <version>2.5.1</version>
178
            <scope>compile</scope>
179
        </dependency>
180

    
181
        <dependency>
182
            <groupId>org.springframework</groupId>
183
            <artifactId>spring-context</artifactId>
184
            <version>${spring.version}</version>
185
        </dependency>
186

    
187
        <dependency>
188
            <groupId>org.springframework</groupId>
189
            <artifactId>spring-jdbc</artifactId>
190
            <version>${spring.version}</version>
191
        </dependency>
192

    
193
        <dependency>
194
            <groupId>com.sun.jersey</groupId>
195
            <artifactId>jersey-client</artifactId>
196
            <version>1.19.3</version>
197
        </dependency>
198

    
199
        <dependency>
200
            <groupId>org.aksw.gson</groupId>
201
            <artifactId>gson-utils-core</artifactId>
202
            <version>1.0.0</version>
203
        </dependency>
204
        <dependency>
205
            <groupId>org.json</groupId>
206
            <artifactId>json</artifactId>
207
            <version>20080701</version>
208
        </dependency>
209

    
210
        <dependency>
211
            <groupId>io.springfox</groupId>
212
            <artifactId>springfox-swagger2</artifactId>
213
            <version>2.7.0</version>
214
        </dependency>
215
        <dependency>
216
            <groupId>io.springfox</groupId>
217
            <artifactId>springfox-swagger-ui</artifactId>
218
            <version>2.7.0</version>
219
        </dependency>
220

    
221
        <!-- https://mvnrepository.com/artifact/cz.habarta.typescript-generator/typescript-generator-maven-plugin -->
222
        <dependency>
223
            <groupId>cz.habarta.typescript-generator</groupId>
224
            <artifactId>typescript-generator-maven-plugin</artifactId>
225
            <version>1.29.366</version>
226
        </dependency>
227
        <!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
228
        <dependency>
229
            <groupId>postgresql</groupId>
230
            <artifactId>postgresql</artifactId>
231
            <version>9.1-901.jdbc3</version>
232
        </dependency>
233

    
234

    
235

    
236
    </dependencies>
237

    
238
</project>
    (1-1/1)