Project

General

Profile

« Previous | Next » 

Revision 47530

Cleaning dependencies + removing ehcache

View differences:

modules/uoa-claims-api/branches/newClaimAPI/src/main/resources/ehcache.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" updateCheck="false">
4
    <!--
5
     | Please see http://ehcache.sourceforge.net/documentation/configuration.html for
6
     | detailed information on how to configurigure caches in this file
7
     +-->
8
    <!-- Location of persistent caches on disk -->
9
    <diskStore path="java.io.tmpdir/EhCacheSpringAnnotationsExampleApp" />
10

  
11
    <defaultCache eternal="true" maxElementsInMemory="10000"
12
        overflowToDisk="false" diskPersistent="false" timeToIdleSeconds="0"
13
        timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU"/>
14

  
15
	<cache name="claimator"/>
16
	<cache name="alertator.subscriptions"/>
17
	<cache name="querynator"/>
18
</ehcache>
modules/uoa-claims-api/branches/newClaimAPI/pom.xml
8 8
	<modelVersion>4.0.0</modelVersion>
9 9
	<groupId>eu.dnetlib</groupId>
10 10
	<artifactId>uoa-claims-api</artifactId>
11
	<version>2.0.0-SNAPSHOT</version>
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
       
37
            <plugin>
38
                <groupId>org.apache.thrift.tools</groupId>
39
                <artifactId>maven-thrift-plugin</artifactId>
40
                <version>0.1.10</version>
41
                <executions>
42
                    <execution>
43
                        <id>thrift-sources</id>
44
                        <phase>generate-sources</phase>
45
                        <goals>
46
                            <goal>compile</goal>
47
                        </goals>
48
                    </execution>
49
                    <execution>
50
                        <id>thrift-test-sources</id>
51
                        <phase>generate-test-sources</phase>
52
                        <goals>
53
                            <goal>testCompile</goal>
54
                        </goals>
55
                    </execution>
56
                </executions>
57
            </plugin>
58
            
59
        </plugins>
60
    
61
        <pluginManagement>
62
            <plugins>
63
                This plugin's configuration is used to store Eclipse m2e settings
64
                    only. It has no influence on the Maven build itself.
65
                <plugin>
66
                    <groupId>org.eclipse.m2e</groupId>
67
                    <artifactId>lifecycle-mapping</artifactId>
68
                    <version>1.0.0</version>
69
                    <configuration>
70
                        <lifecycleMappingMetadata>
71
                            <pluginExecutions>
72
                                <pluginExecution>
73
                                    <pluginExecutionFilter>
74
                                        <groupId>org.apache.thrift.tools</groupId>
75
                                        <artifactId>maven-thrift-plugin</artifactId>
76
                                        <versionRange>[0.1.10,)</versionRange>
77
                                        <goals>
78
                                            <goal>testCompile</goal>
79
                                        </goals>
80
                                    </pluginExecutionFilter>
81
                                    <action>
82
                                        <ignore/>
83
                                    </action>
84
                                </pluginExecution>
85
                            </pluginExecutions>
86
                        </lifecycleMappingMetadata>
87
                    </configuration>
88
                </plugin>
89
            </plugins>
90
        </pluginManagement> -->
91 24
        <plugins>
92 25
            <plugin>
93 26
                <groupId>org.apache.maven.plugins</groupId>
......
122 55
            <version>[2.0.0-SNAPSHOT,)</version>
123 56
        </dependency>
124 57
        <dependency>
125
            <groupId>org.apache.thrift</groupId>
126
            <artifactId>libthrift</artifactId>
127
            <version>0.8.0</version>
128
        </dependency>
129
        <dependency>
130 58
            <groupId>org.postgresql</groupId>
131 59
            <artifactId>jdbc4driver</artifactId>
132 60
            <version>9.1</version>
133 61
        </dependency>
134 62
        <dependency>
135
            <groupId>org.apache.velocity</groupId>
136
            <artifactId>velocity</artifactId>
137
            <version>1.7</version>
138
        </dependency>
139
        <dependency>
140 63
            <groupId>org.springframework</groupId>
141 64
            <artifactId>spring-tx</artifactId>
142 65
            <version>${spring.version}</version>
......
218 141
            <artifactId>jjwt</artifactId>
219 142
            <version>0.7.0</version>
220 143
        </dependency>
221
        <!-- <dependency>
222
            <groupId>org.glassfish.jersey.containers</groupId>
223
            <artifactId>jersey-container-servlet</artifactId>
224
            <version>2.19</version>
225
        </dependency>
226
        <dependency>
227
            <groupId>org.glassfish.jersey.core</groupId>
228
            <artifactId>jersey-server</artifactId>
229
            <version>2.19</version>
230
        </dependency>
231
       <dependency>
232
            <groupId>org.glassfish.jersey.ext</groupId>
233
            <artifactId>jersey-spring3</artifactId>
234
            <version>2.19</version>
235
        </dependency> -->
236 144
    </dependencies>
237 145
</project>

Also available in: Unified diff