Skip to content

Commit dbaabde

Browse files
committed
DATAES-87 - After release cleanups.
1 parent 0f4dc51 commit dbaabde

File tree

1 file changed

+178
-178
lines changed

1 file changed

+178
-178
lines changed

pom.xml

Lines changed: 178 additions & 178 deletions
Original file line numberDiff line numberDiff line change
@@ -1,178 +1,178 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
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.0.0.BUILD-SNAPSHOT</version>
8-
9-
<parent>
10-
<groupId>org.springframework.data.build</groupId>
11-
<artifactId>spring-data-parent</artifactId>
12-
<version>1.4.0.RC1</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.1.1</elasticsearch>
27-
<springdata.commons>1.8.0.RC1</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-milestone</id>
150-
<url>http://repo.spring.io/libs-milestone</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>
177-
178-
</project>
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.0.0.BUILD-SNAPSHOT</version>
8+
9+
<parent>
10+
<groupId>org.springframework.data.build</groupId>
11+
<artifactId>spring-data-parent</artifactId>
12+
<version>1.4.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.1.1</elasticsearch>
27+
<springdata.commons>1.8.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>
177+
178+
</project>

0 commit comments

Comments
 (0)