-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
102 lines (94 loc) · 3.17 KB
/
Copy pathpom.xml
File metadata and controls
102 lines (94 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>repos-testing</artifactId>
<version>0.22.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.artifactId}-${project.version}</name>
<url>http://www.repos.se/</url>
<parent>
<groupId>se.repos</groupId>
<artifactId>maven-parent</artifactId>
<version>11.0.2</version>
<relativePath/>
</parent>
<scm>
<developerConnection>scm:svn:https://labs.repos.se/svn/${project.artifactId}/trunk</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Trac</system>
<url>https://labs.repos.se/trac/</url>
</issueManagement>
<repositories>
<repository>
<id>repos.open.repo</id>
<name>Simonsoft / Repos Open Repository</name>
<url>http://opensource.simonsoft.se/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>repos-indexing</artifactId>
<version>0.22.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-core</artifactId>
<version>8.11.2</version>
<exclusions>
<!-- from hadoop dependency -->
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>se.simonsoft</groupId>
<artifactId>cms-testing</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>se.simonsoft</groupId>
<artifactId>cms-backend-svnkit</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>
<!-- Would like to upgrade to core Guice no_aop but seems incompatible with guava version used by SolR 6.6.6. -->
<dependency>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>org.sonatype.sisu.inject</groupId>
<artifactId>guice-multibindings</artifactId>
<version>3.2.3</version>
</dependency>
<!-- for PathMatchingResourcePatternResolver extraction of index from classpath -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<!-- newer spring core jars are much bigger -->
<version>1.2.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>se.simonsoft</groupId>
<artifactId>cms-item</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>
</dependencies>
<description>Version number should be aligned with repos-indexing (at least first 2 parts).
Allowed to remain SNAPSHOT since it is not a shipping module.</description>
</project>