Project

General

Profile

« Previous | Next » 

Revision 48312

MERGE newClaimsAPI 42190:48301

View differences:

pom.xml
7 7
	</parent>
8 8
	<modelVersion>4.0.0</modelVersion>
9 9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-openaire-connector</artifactId>
11
	<version>2.0.0-SNAPSHOT</version>
10
	<artifactId>uoa-claims-api</artifactId>
11
	<version>2.0.1-SNAPSHOT</version>
12 12
        <scm>
13 13
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-openaire-connector/trunk</developerConnection>
14 14
        </scm>
......
21 21
		</pluginRepository>
22 22
	</pluginRepositories>
23 23
	<build>
24
		<plugins>
25
			<plugin>
26
				<artifactId>maven-assembly-plugin</artifactId>
27
				<configuration>
28
					<archive>
29

  
30
					</archive>
31
					<descriptorRefs>
32
						<descriptorRef>jar-with-dependencies</descriptorRef>
33
					</descriptorRefs>
34
				</configuration>
35
			</plugin>
36
			<plugin>
37
				<groupId>org.apache.thrift.tools</groupId>
38
				<artifactId>maven-thrift-plugin</artifactId>
39
				<version>0.1.10</version>
40
				<executions>
41
					<execution>
42
						<id>thrift-sources</id>
43
						<phase>generate-sources</phase>
44
						<goals>
45
							<goal>compile</goal>
46
						</goals>
47
					</execution>
48
					<execution>
49
						<id>thrift-test-sources</id>
50
						<phase>generate-test-sources</phase>
51
						<goals>
52
							<goal>testCompile</goal>
53
						</goals>
54
					</execution>
55
				</executions>
56
			</plugin>
57
		</plugins>
58
		<pluginManagement>
59
			<plugins>
60
				<!--This plugin's configuration is used to store Eclipse m2e settings 
61
					only. It has no influence on the Maven build itself. -->
62
				<plugin>
63
					<groupId>org.eclipse.m2e</groupId>
64
					<artifactId>lifecycle-mapping</artifactId>
65
					<version>1.0.0</version>
66
					<configuration>
67
						<lifecycleMappingMetadata>
68
							<pluginExecutions>
69
								<pluginExecution>
70
									<pluginExecutionFilter>
71
										<groupId>org.apache.thrift.tools</groupId>
72
										<artifactId>maven-thrift-plugin</artifactId>
73
										<versionRange>[0.1.10,)</versionRange>
74
										<goals>
75
											<goal>testCompile</goal>
76
										</goals>
77
									</pluginExecutionFilter>
78
									<action>
79
										<ignore />
80
									</action>
81
								</pluginExecution>
82
							</pluginExecutions>
83
						</lifecycleMappingMetadata>
84
	</configuration>
85
				</plugin>
86
			</plugins>
87
		</pluginManagement>
88
	</build>
89
	<dependencies>
90
		<dependency>
91
			<groupId>junit</groupId>
92
			<artifactId>junit</artifactId>
93
			<version>[0.0.0,)</version>
94
			<scope>test</scope>
95
		</dependency>
96
		<dependency>
97
			<groupId>org.slf4j</groupId>
98
			<artifactId>slf4j-api</artifactId>
99
			<version>1.7.5</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>commons-dbcp</groupId>
103
			<artifactId>commons-dbcp</artifactId>
104
			<version>[1.2, 1.3)</version>
105
		</dependency>
106
		<dependency>
107
			<groupId>eu.dnetlib</groupId>
108
			<artifactId>uoa-commons</artifactId>
109
			<version>[2.0.0-SNAPSHOT, )</version>
110
		</dependency>
111
		<dependency>
112
			<groupId>org.apache.thrift</groupId>
113
			<artifactId>libthrift</artifactId>
114
			<version>0.8.0</version>
115
		</dependency>
116
		<dependency>
117
			<groupId>org.postgresql</groupId>
118
			<artifactId>jdbc4driver</artifactId>
119
			<version>9.1</version>
120
		</dependency>
121
		<dependency>
122
			<groupId>org.apache.velocity</groupId>
123
			<artifactId>velocity</artifactId>
124
			<version>1.7</version>
125
		</dependency>
24
        <plugins>
25
            <plugin>
26
                <groupId>org.apache.maven.plugins</groupId>
27
                <artifactId>maven-compiler-plugin</artifactId>
28
                <configuration>
29
                    <source>1.7</source>
30
                    <target>1.7</target>
31
                </configuration>
32
            </plugin>
33
        </plugins>
34
    </build>
35
    <dependencies>
126 36
        <dependency>
37
            <groupId>junit</groupId>
38
            <artifactId>junit</artifactId>
39
            <version>[0.0.0,)</version>
40
            <scope>test</scope>
41
        </dependency>
42
        <dependency>
43
            <groupId>org.slf4j</groupId>
44
            <artifactId>slf4j-api</artifactId>
45
            <version>1.7.5</version>
46
        </dependency>
47
        <dependency>
48
            <groupId>commons-dbcp</groupId>
49
            <artifactId>commons-dbcp</artifactId>
50
            <version>[1.2, 1.3)</version>
51
        </dependency>
52
        <dependency>
53
            <groupId>eu.dnetlib</groupId>
54
            <artifactId>uoa-claims</artifactId>
55
            <version>[2.0.0-SNAPSHOT,)</version>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.postgresql</groupId>
59
            <artifactId>jdbc4driver</artifactId>
60
            <version>9.1</version>
61
        </dependency>
62
        <dependency>
127 63
            <groupId>org.springframework</groupId>
128 64
            <artifactId>spring-tx</artifactId>
129 65
            <version>${spring.version}</version>
......
133 69
            <artifactId>spring-jdbc</artifactId>
134 70
            <version>${spring.version}</version>
135 71
        </dependency>
72

  
73
        <!-- Jersey -->
136 74
        <dependency>
137
            <groupId>com.googlecode.json-simple</groupId>
138
            <artifactId>json-simple</artifactId>
139
            <version>1.1</version>
75
            <groupId>asm</groupId>
76
            <artifactId>asm</artifactId>
77
            <version>3.3.1</version>
140 78
        </dependency>
79
        <dependency>
80
            <groupId>com.sun.jersey</groupId>
81
            <artifactId>jersey-bundle</artifactId>
82
            <version>1.19</version>
83
        </dependency>
84
        <dependency>
85
            <groupId>org.json</groupId>
86
            <artifactId>json</artifactId>
87
            <version>20140107</version>
88
        </dependency>
89
        <dependency>
90
            <groupId>com.sun.jersey</groupId>
91
            <artifactId>jersey-server</artifactId>
92
            <version>1.19</version>
93
        </dependency>
94
        <dependency>
95
            <groupId>com.sun.jersey</groupId>
96
            <artifactId>jersey-core</artifactId>
97
            <version>1.19</version>
98
        </dependency>
99
        <dependency>
100
            <groupId>commons-validator</groupId>
101
            <artifactId>commons-validator</artifactId>
102
            <version>1.3.1</version>
103
        </dependency>
104
        <dependency>
105
            <groupId>com.sun.jersey.contribs</groupId>
106
            <artifactId>jersey-spring</artifactId>
107
            <version>1.8</version>
108
            <exclusions>
109
                <exclusion>
110
                    <groupId>org.springframework</groupId>
111
                    <artifactId>spring</artifactId>
112
                </exclusion>
113
                <exclusion>
114
                    <groupId>org.springframework</groupId>
115
                    <artifactId>spring-core</artifactId>
116
                </exclusion>
117
                <exclusion>
118
                    <groupId>org.springframework</groupId>
119
                    <artifactId>spring-web</artifactId>
120
                </exclusion>
121
                <exclusion>
122
                    <groupId>org.springframework</groupId>
123
                    <artifactId>spring-beans</artifactId>
124
                </exclusion>
125
                <exclusion>
126
                    <groupId>org.springframework</groupId>
127
                    <artifactId>spring-context</artifactId>
128
                </exclusion>
129
                <exclusion>
130
                    <groupId>org.springframework</groupId>
131
                    <artifactId>spring-utils</artifactId>
132
                </exclusion>
133
                <exclusion>
134
                    <groupId>org.springframework</groupId>
135
                    <artifactId>spring-aop</artifactId>
136
                </exclusion>
137
            </exclusions>
138
        </dependency>
139
        <dependency>
140
            <groupId>io.jsonwebtoken</groupId>
141
            <artifactId>jjwt</artifactId>
142
            <version>0.7.0</version>
143
        </dependency>
141 144
    </dependencies>
142

  
143 145
</project>

Also available in: Unified diff