|
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2 |
| -<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/xsd/maven-4.0.0.xsd"> |
3 |
| - <modelVersion>4.0.0</modelVersion> |
4 |
| - |
5 |
| - <groupId>org.springframework.data</groupId> |
6 |
| - <artifactId>spring-data-elasticsearch</artifactId> |
7 |
| - <version>1.1.0.BUILD-SNAPSHOT</version> |
8 |
| - |
9 |
| - <parent> |
10 |
| - <groupId>org.springframework.data.build</groupId> |
11 |
| - <artifactId>spring-data-parent</artifactId> |
12 |
| - <version>1.5.0.BUILD-SNAPSHOT</version> |
13 |
| - <relativePath>../spring-data-build/parent/pom.xml</relativePath> |
14 |
| - </parent> |
15 |
| - |
16 |
| - <name>Spring Data Elasticsearch</name> |
17 |
| - <description>Spring Data Implementation for Elasticsearch</description> |
18 |
| - <url>https://github.com/spring-projects/spring-data-elasticsearch</url> |
19 |
| - |
20 |
| - <properties> |
21 |
| - |
22 |
| - <dist.key>DATAES</dist.key> |
23 |
| - |
24 |
| - <commonscollections>3.2.1</commonscollections> |
25 |
| - <commonslang>2.6</commonslang> |
26 |
| - <elasticsearch>1.2.2</elasticsearch> |
27 |
| - <springdata.commons>1.9.0.BUILD-SNAPSHOT</springdata.commons> |
28 |
| - |
29 |
| - </properties> |
30 |
| - |
31 |
| - <dependencies> |
32 |
| - |
33 |
| - <!-- Spring --> |
34 |
| - <dependency> |
35 |
| - <groupId>org.springframework</groupId> |
36 |
| - <artifactId>spring-context</artifactId> |
37 |
| - <exclusions> |
38 |
| - <exclusion> |
39 |
| - <groupId>commons-logging</groupId> |
40 |
| - <artifactId>commons-logging</artifactId> |
41 |
| - </exclusion> |
42 |
| - </exclusions> |
43 |
| - </dependency> |
44 |
| - |
45 |
| - <dependency> |
46 |
| - <groupId>org.springframework</groupId> |
47 |
| - <artifactId>spring-tx</artifactId> |
48 |
| - </dependency> |
49 |
| - |
50 |
| - <!-- SPRING DATA --> |
51 |
| - <dependency> |
52 |
| - <groupId>org.springframework.data</groupId> |
53 |
| - <artifactId>spring-data-commons</artifactId> |
54 |
| - <version>${springdata.commons}</version> |
55 |
| - </dependency> |
56 |
| - |
57 |
| - <!-- APACHE --> |
58 |
| - <dependency> |
59 |
| - <groupId>commons-lang</groupId> |
60 |
| - <artifactId>commons-lang</artifactId> |
61 |
| - <version>${commonslang}</version> |
62 |
| - </dependency> |
63 |
| - <dependency> |
64 |
| - <groupId>commons-collections</groupId> |
65 |
| - <artifactId>commons-collections</artifactId> |
66 |
| - <version>${commonscollections}</version> |
67 |
| - </dependency> |
68 |
| - |
69 |
| - <!-- JODA Time --> |
70 |
| - <dependency> |
71 |
| - <groupId>joda-time</groupId> |
72 |
| - <artifactId>joda-time</artifactId> |
73 |
| - <version>${jodatime}</version> |
74 |
| - </dependency> |
75 |
| - |
76 |
| - <!-- Elasticsearch --> |
77 |
| - <dependency> |
78 |
| - <groupId>org.elasticsearch</groupId> |
79 |
| - <artifactId>elasticsearch</artifactId> |
80 |
| - <version>${elasticsearch}</version> |
81 |
| - </dependency> |
82 |
| - |
83 |
| - <!-- Jackson JSON Mapper --> |
84 |
| - <dependency> |
85 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
86 |
| - <artifactId>jackson-core</artifactId> |
87 |
| - <version>${jackson}</version> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
91 |
| - <artifactId>jackson-databind</artifactId> |
92 |
| - <version>${jackson}</version> |
93 |
| - </dependency> |
94 |
| - |
95 |
| - <!-- CDI --> |
96 |
| - <dependency> |
97 |
| - <groupId>javax.enterprise</groupId> |
98 |
| - <artifactId>cdi-api</artifactId> |
99 |
| - <version>${cdi}</version> |
100 |
| - <scope>provided</scope> |
101 |
| - <optional>true</optional> |
102 |
| - </dependency> |
103 |
| - |
104 |
| - <!-- Test --> |
105 |
| - <dependency> |
106 |
| - <groupId>org.springframework</groupId> |
107 |
| - <artifactId>spring-test</artifactId> |
108 |
| - <version>${spring}</version> |
109 |
| - <scope>test</scope> |
110 |
| - </dependency> |
111 |
| - <dependency> |
112 |
| - <groupId>org.apache.openwebbeans.test</groupId> |
113 |
| - <artifactId>cditest-owb</artifactId> |
114 |
| - <version>${webbeans}</version> |
115 |
| - <scope>test</scope> |
116 |
| - </dependency> |
117 |
| - <dependency> |
118 |
| - <groupId>javax.servlet</groupId> |
119 |
| - <artifactId>servlet-api</artifactId> |
120 |
| - <version>3.0-alpha-1</version> |
121 |
| - <scope>test</scope> |
122 |
| - </dependency> |
123 |
| - |
124 |
| - </dependencies> |
125 |
| - |
126 |
| - <build> |
127 |
| - <plugins> |
128 |
| - <plugin> |
129 |
| - <groupId>org.apache.maven.plugins</groupId> |
130 |
| - <artifactId>maven-assembly-plugin</artifactId> |
131 |
| - </plugin> |
132 |
| - <plugin> |
133 |
| - <groupId>org.codehaus.mojo</groupId> |
134 |
| - <artifactId>wagon-maven-plugin</artifactId> |
135 |
| - </plugin> |
136 |
| - </plugins> |
137 |
| - </build> |
138 |
| - |
139 |
| - <developers> |
140 |
| - <developer> |
141 |
| - <id>biomedcentral</id> |
142 |
| - <name>BioMed Central Development Team</name> |
143 |
| - <timezone>+0</timezone> |
144 |
| - </developer> |
145 |
| - </developers> |
146 |
| - |
147 |
| - <repositories> |
148 |
| - <repository> |
149 |
| - <id>spring-libs-snapshot</id> |
150 |
| - <url>http://repo.spring.io/libs-snapshot</url> |
151 |
| - </repository> |
152 |
| - </repositories> |
153 |
| - |
154 |
| - <pluginRepositories> |
155 |
| - <pluginRepository> |
156 |
| - <id>spring-plugins-release</id> |
157 |
| - <url>http://repo.spring.io/plugins-release</url> |
158 |
| - </pluginRepository> |
159 |
| - </pluginRepositories> |
160 |
| - |
161 |
| - <scm> |
162 |
| - <url>https://github.com/spring-projects/spring-data-elasticsearch</url> |
163 |
| - <connection>scm:git:git://github.com/spring-projects/spring-data-elasticsearch.git</connection> |
164 |
| - < developerConnection>scm:git:ssh:// [email protected]/spring-projects/spring-data-elasticsearch.git |
165 |
| - </developerConnection> |
166 |
| - </scm> |
167 |
| - |
168 |
| - <ciManagement> |
169 |
| - <system>Bamboo</system> |
170 |
| - <url>http://build.springsource.org/browse/SPRINGDATAES</url> |
171 |
| - </ciManagement> |
172 |
| - |
173 |
| - <issueManagement> |
174 |
| - <system>JIRA</system> |
175 |
| - <url>https://jira.springsource.org/browse/DATAES</url> |
176 |
| - </issueManagement> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>org.springframework.data</groupId> |
| 7 | + <artifactId>spring-data-elasticsearch</artifactId> |
| 8 | + <version>1.1.0.BUILD-SNAPSHOT</version> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>org.springframework.data.build</groupId> |
| 12 | + <artifactId>spring-data-parent</artifactId> |
| 13 | + <version>1.5.0.BUILD-SNAPSHOT</version> |
| 14 | + <relativePath>../spring-data-build/parent/pom.xml</relativePath> |
| 15 | + </parent> |
| 16 | + |
| 17 | + <name>Spring Data Elasticsearch</name> |
| 18 | + <description>Spring Data Implementation for Elasticsearch</description> |
| 19 | + <url>https://github.com/spring-projects/spring-data-elasticsearch</url> |
| 20 | + |
| 21 | + <properties> |
| 22 | + |
| 23 | + <dist.key>DATAES</dist.key> |
| 24 | + |
| 25 | + <commonscollections>3.2.1</commonscollections> |
| 26 | + <commonslang>2.6</commonslang> |
| 27 | + <elasticsearch>1.2.2</elasticsearch> |
| 28 | + <springdata.commons>1.9.0.BUILD-SNAPSHOT</springdata.commons> |
| 29 | + |
| 30 | + </properties> |
| 31 | + |
| 32 | + <dependencies> |
| 33 | + |
| 34 | + <!-- Spring --> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework</groupId> |
| 37 | + <artifactId>spring-context</artifactId> |
| 38 | + <exclusions> |
| 39 | + <exclusion> |
| 40 | + <groupId>commons-logging</groupId> |
| 41 | + <artifactId>commons-logging</artifactId> |
| 42 | + </exclusion> |
| 43 | + </exclusions> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework</groupId> |
| 48 | + <artifactId>spring-tx</artifactId> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <!-- SPRING DATA --> |
| 52 | + <dependency> |
| 53 | + <groupId>org.springframework.data</groupId> |
| 54 | + <artifactId>spring-data-commons</artifactId> |
| 55 | + <version>${springdata.commons}</version> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <!-- APACHE --> |
| 59 | + <dependency> |
| 60 | + <groupId>commons-lang</groupId> |
| 61 | + <artifactId>commons-lang</artifactId> |
| 62 | + <version>${commonslang}</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>commons-collections</groupId> |
| 66 | + <artifactId>commons-collections</artifactId> |
| 67 | + <version>${commonscollections}</version> |
| 68 | + </dependency> |
| 69 | + |
| 70 | + <!-- JODA Time --> |
| 71 | + <dependency> |
| 72 | + <groupId>joda-time</groupId> |
| 73 | + <artifactId>joda-time</artifactId> |
| 74 | + <version>${jodatime}</version> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <!-- Elasticsearch --> |
| 78 | + <dependency> |
| 79 | + <groupId>org.elasticsearch</groupId> |
| 80 | + <artifactId>elasticsearch</artifactId> |
| 81 | + <version>${elasticsearch}</version> |
| 82 | + </dependency> |
| 83 | + |
| 84 | + <!-- Jackson JSON Mapper --> |
| 85 | + <dependency> |
| 86 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 87 | + <artifactId>jackson-core</artifactId> |
| 88 | + <version>${jackson}</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 92 | + <artifactId>jackson-databind</artifactId> |
| 93 | + <version>${jackson}</version> |
| 94 | + </dependency> |
| 95 | + |
| 96 | + <!-- CDI --> |
| 97 | + <dependency> |
| 98 | + <groupId>javax.enterprise</groupId> |
| 99 | + <artifactId>cdi-api</artifactId> |
| 100 | + <version>${cdi}</version> |
| 101 | + <scope>provided</scope> |
| 102 | + <optional>true</optional> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <!-- Test --> |
| 106 | + <dependency> |
| 107 | + <groupId>org.springframework</groupId> |
| 108 | + <artifactId>spring-test</artifactId> |
| 109 | + <version>${spring}</version> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.apache.openwebbeans.test</groupId> |
| 114 | + <artifactId>cditest-owb</artifactId> |
| 115 | + <version>${webbeans}</version> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>javax.servlet</groupId> |
| 120 | + <artifactId>servlet-api</artifactId> |
| 121 | + <version>3.0-alpha-1</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + |
| 125 | + </dependencies> |
| 126 | + |
| 127 | + <build> |
| 128 | + <plugins> |
| 129 | + <plugin> |
| 130 | + <groupId>org.apache.maven.plugins</groupId> |
| 131 | + <artifactId>maven-assembly-plugin</artifactId> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.codehaus.mojo</groupId> |
| 135 | + <artifactId>wagon-maven-plugin</artifactId> |
| 136 | + </plugin> |
| 137 | + </plugins> |
| 138 | + </build> |
| 139 | + |
| 140 | + <developers> |
| 141 | + <developer> |
| 142 | + <id>biomedcentral</id> |
| 143 | + <name>BioMed Central Development Team</name> |
| 144 | + <timezone>+0</timezone> |
| 145 | + </developer> |
| 146 | + </developers> |
| 147 | + |
| 148 | + <repositories> |
| 149 | + <repository> |
| 150 | + <id>spring-libs-snapshot</id> |
| 151 | + <url>http://repo.spring.io/libs-snapshot</url> |
| 152 | + </repository> |
| 153 | + </repositories> |
| 154 | + |
| 155 | + <pluginRepositories> |
| 156 | + <pluginRepository> |
| 157 | + <id>spring-plugins-release</id> |
| 158 | + <url>http://repo.spring.io/plugins-release</url> |
| 159 | + </pluginRepository> |
| 160 | + </pluginRepositories> |
| 161 | + |
| 162 | + <scm> |
| 163 | + <url>https://github.com/spring-projects/spring-data-elasticsearch</url> |
| 164 | + <connection>scm:git:git://github.com/spring-projects/spring-data-elasticsearch.git</connection> |
| 165 | + < developerConnection>scm:git:ssh:// [email protected]/spring-projects/spring-data-elasticsearch.git |
| 166 | + </developerConnection> |
| 167 | + </scm> |
| 168 | + |
| 169 | + <ciManagement> |
| 170 | + <system>Bamboo</system> |
| 171 | + <url>http://build.springsource.org/browse/SPRINGDATAES</url> |
| 172 | + </ciManagement> |
| 173 | + |
| 174 | + <issueManagement> |
| 175 | + <system>JIRA</system> |
| 176 | + <url>https://jira.springsource.org/browse/DATAES</url> |
| 177 | + </issueManagement> |
177 | 178 |
|
178 | 179 | </project>
|
0 commit comments