Project

General

Profile

« Previous | Next » 

Revision 49764

Update pom.xml / Changes on shared folder.

View differences:

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