Project

General

Profile

« Previous | Next » 

Revision 49764

Update pom.xml / Changes on shared folder.

View differences:

modules/uoa-repository-manager-service/src/pom.xml
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.27.339</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
        <dependency>
104
            <groupId>eu.dnetlib</groupId>
105
            <artifactId>uoa-domain</artifactId>
106
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
107
            <exclusions>
108
                <exclusion>  <!-- declare the exclusion here -->
109
                    <groupId>cglib</groupId>
110
                    <artifactId>cglib</artifactId>
111
                </exclusion>
112
            </exclusions>
113
        </dependency>
114

  
115

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

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

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

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

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

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

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

  
180
        <dependency>
181
            <groupId>org.springframework</groupId>
182
            <artifactId>spring-context</artifactId>
183
            <version>${spring.version}</version>
184
        </dependency>
185
        <dependency>
186
            <groupId>com.sun.jersey</groupId>
187
            <artifactId>jersey-client</artifactId>
188
            <version>1.19.3</version>
189
        </dependency>
190

  
191
        <dependency>
192
            <groupId>org.aksw.gson</groupId>
193
            <artifactId>gson-utils-core</artifactId>
194
            <version>1.0.0</version>
195
        </dependency>
196
        <dependency>
197
            <groupId>org.json</groupId>
198
            <artifactId>json</artifactId>
199
            <version>20080701</version>
200
        </dependency>
201
    </dependencies>
202

  
203

  
204

  
205
</project>
modules/uoa-repository-manager-service/src/main/java/eu/dnetlib/repo/manager/shared/broker/OpenaireSubscription.java
1 1
package eu.dnetlib.repo.manager.shared.broker;
2 2

  
3 3
import com.google.gwt.user.client.rpc.IsSerializable;
4
import eu.dnetlib.repo.manager.service.shared.NotificationMode;
5 4

  
6 5
/**
7 6
 * Created by stefanos on 10-Mar-17.
modules/uoa-repository-manager-service/src/main/java/eu/dnetlib/repo/manager/shared/broker/DatasourcesBroker.java
1 1
package eu.dnetlib.repo.manager.shared.broker;
2 2

  
3 3
import com.google.gwt.user.client.rpc.IsSerializable;
4
import eu.dnetlib.repo.manager.service.shared.Tuple;
4
import eu.dnetlib.repo.manager.shared.Tuple;
5 5

  
6 6
import java.util.List;
7 7

  
modules/uoa-repository-manager-service/src/main/java/eu/dnetlib/repo/manager/shared/broker/Subscription.java
6 6

  
7 7

  
8 8
import com.google.gwt.user.client.rpc.IsSerializable;
9
import eu.dnetlib.repo.manager.service.shared.NotificationMode;
10 9

  
11 10
import java.util.Date;
12 11
import java.util.List;
modules/uoa-repository-manager-service/pom.xml
2 2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3 3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 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>
5 11
    <modelVersion>4.0.0</modelVersion>
6

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

  
12 17

  
13
    <properties>
14
        <spring.version>[4.0.0.RELEASE]</spring.version>
15
    </properties>
16

  
17 18
    <build>
18 19
        <plugins>
19 20
            <plugin>
20 21
                <groupId>org.apache.maven.plugins</groupId>
21 22
                <artifactId>maven-compiler-plugin</artifactId>
22 23
                <version>3.1</version>
23
                <!-- compile for Java 1.8 -->
24 24
                <configuration>
25
                    <source>1.7</source>
26
                    <target>1.7</target>
25
                    <source>1.8</source>
26
                    <target>1.8</target>
27 27
                    <encoding>UTF-8</encoding>
28 28
                </configuration>
29 29
            </plugin>
......
35 35
                    <failOnMissingWebXml>false</failOnMissingWebXml>
36 36
                </configuration>
37 37
            </plugin>
38
            <!--<plugin>
38
           <!-- <plugin>
39 39
                <groupId>cz.habarta.typescript-generator</groupId>
40 40
                <artifactId>typescript-generator-maven-plugin</artifactId>
41 41
                <version>1.27.339</version>
......
85 85
        <dependency>
86 86
            <groupId>eu.dnetlib</groupId>
87 87
            <artifactId>dnet-runtime</artifactId>
88
            <version>[1.0.0]</version>
88
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
89 89
            <exclusions>
90 90
                <exclusion>  <!-- declare the exclusion here -->
91 91
                    <groupId>org.apache.geronimo.specs</groupId>
92 92
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
93 93
                </exclusion>
94
                <exclusion>  <!-- declare the exclusion here -->
95
                    <groupId>com.sun.xml.bind</groupId>
96
                    <artifactId>jaxb-impl</artifactId>
97
                </exclusion>
98 94
            </exclusions>
99 95
        </dependency>
96

  
100 97
        <dependency>
101 98
            <groupId>eu.dnetlib</groupId>
102 99
            <artifactId>uoa-utils</artifactId>
103
            <version>[1.2.0-SNAPSHOT, )</version>
100
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
104 101
        </dependency>
102

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

  
115

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

  
122
        <dependency>
111 123
            <groupId>eu.dnetlib</groupId>
112 124
            <artifactId>uoa-commons</artifactId>
113
            <version>[1.2.0-SNAPSHOT, )</version>
125
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
114 126
        </dependency>
115 127
        <dependency>
116 128
            <groupId>eu.dnetlib</groupId>
117 129
            <artifactId>uoa-clients</artifactId>
118
            <version>[1.2.0-SNAPSHOT, )</version>
130
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
119 131
        </dependency>
120 132
        <dependency>
121 133
            <groupId>eu.dnetlib</groupId>
122 134
            <artifactId>uoa-hcm</artifactId>
123
            <version>[1.2.0-SNAPSHOT, )</version>
135
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
124 136
        </dependency>
125 137

  
126 138
        <dependency>
......
153 165
        </dependency>
154 166

  
155 167
        <dependency>
156
            <groupId>org.springframework</groupId>
157
            <artifactId>spring-aop</artifactId>
158
            <version>${spring.version}</version>
159
        </dependency>
160
        <dependency>
161 168
            <groupId>com.fasterxml.jackson.core</groupId>
162 169
            <artifactId>jackson-core</artifactId>
163 170
            <version>2.5.1</version>
......
169 176
            <version>2.5.1</version>
170 177
            <scope>compile</scope>
171 178
        </dependency>
179

  
172 180
        <dependency>
173
            <groupId>org.aspectj</groupId>
174
            <artifactId>aspectjweaver</artifactId>
175
            <version>1.7.3</version>
176
        </dependency>
177
        <dependency>
178 181
            <groupId>org.springframework</groupId>
179 182
            <artifactId>spring-context</artifactId>
180
            <version>4.2.5.RELEASE</version>
183
            <version>${spring.version}</version>
181 184
        </dependency>
182 185
        <dependency>
183 186
            <groupId>com.sun.jersey</groupId>
......
195 198
            <artifactId>json</artifactId>
196 199
            <version>20080701</version>
197 200
        </dependency>
201
    </dependencies>
198 202

  
199 203

  
200
    </dependencies>
201 204

  
202
    <repositories>
203
        <repository>
204
            <id>dnet-deps</id>
205
            <name>dnet-dependencies</name>
206
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
207
            <layout>default</layout>
208
        </repository>
209
        <repository>
210
            <id>dnet4-snapshots</id>
211
            <name>D-Net 4 Snapshots</name>
212
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots</url>
213
            <layout>default</layout>
214
            <snapshots>
215
                <enabled>true</enabled>
216
            </snapshots>
217
        </repository>
218
        <repository>
219
            <id>dnet4-releases</id>
220
            <name>D-Net 4 Releases</name>
221
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-releases</url>
222
            <layout>default</layout>
223
            <snapshots>
224
                <enabled>false</enabled>
225
            </snapshots>
226
            <releases>
227
                <enabled>true</enabled>
228
            </releases>
229
        </repository>
230
    </repositories>
231

  
232 205
</project>

Also available in: Unified diff