|
1 | 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> |
| 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.0.0.BUILD-SNAPSHOT</version> |
| 9 | + |
| 10 | + <parent> |
10 | 11 | <groupId>org.springframework.data.build</groupId>
|
11 | 12 | <artifactId>spring-data-parent</artifactId>
|
12 | 13 | <version>1.1.0.BUILD-SNAPSHOT</version>
|
13 | 14 | <relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
14 | 15 | </parent>
|
15 |
| - |
16 |
| - <name>Spring Data Elasticsearch</name> |
17 |
| - <description>Spring Data Implementation for Elasticsearch</description> |
18 |
| - <url>https://github.com/SpringSource/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>0.90.0</elasticsearch> |
27 |
| - <jackson>1.9.2</jackson> |
28 |
| - <springdata.commons>1.6.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 |
| - <version>${spring}</version> |
39 |
| - <exclusions> |
40 |
| - <exclusion> |
41 |
| - <groupId>commons-logging</groupId> |
42 |
| - <artifactId>commons-logging</artifactId> |
43 |
| - </exclusion> |
44 |
| - </exclusions> |
45 |
| - </dependency> |
46 |
| - |
47 |
| - <dependency> |
48 |
| - <groupId>org.springframework</groupId> |
49 |
| - <artifactId>spring-tx</artifactId> |
50 |
| - <version>${spring}</version> |
51 |
| - </dependency> |
52 |
| - |
53 |
| - <!-- For JavaConfig --> |
54 |
| - <dependency> |
55 |
| - <groupId>cglib</groupId> |
56 |
| - <artifactId>cglib</artifactId> |
57 |
| - <version>2.2.2</version> |
58 |
| - <scope>test</scope> |
59 |
| - </dependency> |
60 |
| - |
61 |
| - <!-- SPRING DATA --> |
62 |
| - <dependency> |
63 |
| - <groupId>org.springframework.data</groupId> |
64 |
| - <artifactId>spring-data-commons</artifactId> |
65 |
| - <version>${springdata.commons}</version> |
66 |
| - </dependency> |
67 |
| - |
68 |
| - <!-- APACHE --> |
69 |
| - <dependency> |
70 |
| - <groupId>commons-lang</groupId> |
71 |
| - <artifactId>commons-lang</artifactId> |
72 |
| - <version>${commonslang}</version> |
73 |
| - </dependency> |
74 |
| - <dependency> |
75 |
| - <groupId>commons-collections</groupId> |
76 |
| - <artifactId>commons-collections</artifactId> |
77 |
| - <version>${commonscollections}</version> |
78 |
| - </dependency> |
79 |
| - |
80 |
| - <!-- JODA Time --> |
81 |
| - <dependency> |
82 |
| - <groupId>joda-time</groupId> |
83 |
| - <artifactId>joda-time</artifactId> |
84 |
| - <version>${jodatime}</version> |
85 |
| - </dependency> |
86 |
| - |
87 |
| - <!-- Elasticsearch --> |
88 |
| - <dependency> |
89 |
| - <groupId>org.elasticsearch</groupId> |
90 |
| - <artifactId>elasticsearch</artifactId> |
91 |
| - <version>${elasticsearch}</version> |
92 |
| - </dependency> |
93 |
| - |
94 |
| - <!-- Jackson JSON Mapper --> |
95 |
| - <dependency> |
96 |
| - <groupId>org.codehaus.jackson</groupId> |
97 |
| - <artifactId>jackson-mapper-asl</artifactId> |
98 |
| - <version>${jackson}</version> |
99 |
| - </dependency> |
100 |
| - |
101 |
| - <!-- CDI --> |
102 |
| - <dependency> |
103 |
| - <groupId>javax.enterprise</groupId> |
104 |
| - <artifactId>cdi-api</artifactId> |
105 |
| - <version>${cdi}</version> |
106 |
| - <scope>provided</scope> |
107 |
| - <optional>true</optional> |
108 |
| - </dependency> |
109 |
| - |
110 |
| - <!-- Test --> |
111 |
| - <dependency> |
112 |
| - <groupId>org.springframework</groupId> |
113 |
| - <artifactId>spring-test</artifactId> |
114 |
| - <version>${spring}</version> |
115 |
| - <scope>test</scope> |
116 |
| - </dependency> |
117 |
| - <dependency> |
118 |
| - <groupId>org.apache.openwebbeans.test</groupId> |
119 |
| - <artifactId>cditest-owb</artifactId> |
120 |
| - <version>${webbeans}</version> |
121 |
| - <scope>test</scope> |
122 |
| - </dependency> |
123 |
| - |
124 |
| - </dependencies> |
125 |
| - |
126 |
| - <build> |
127 |
| - <plugins> |
128 |
| - <plugin> |
| 16 | + |
| 17 | + <name>Spring Data Elasticsearch</name> |
| 18 | + <description>Spring Data Implementation for Elasticsearch</description> |
| 19 | + <url>https://github.com/SpringSource/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>0.90.0</elasticsearch> |
| 28 | + <jackson>1.9.2</jackson> |
| 29 | + <springdata.commons>1.6.0.BUILD-SNAPSHOT</springdata.commons> |
| 30 | + |
| 31 | + </properties> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + |
| 35 | + <!-- Spring --> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework</groupId> |
| 38 | + <artifactId>spring-context</artifactId> |
| 39 | + <version>${spring}</version> |
| 40 | + <exclusions> |
| 41 | + <exclusion> |
| 42 | + <groupId>commons-logging</groupId> |
| 43 | + <artifactId>commons-logging</artifactId> |
| 44 | + </exclusion> |
| 45 | + </exclusions> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework</groupId> |
| 50 | + <artifactId>spring-tx</artifactId> |
| 51 | + <version>${spring}</version> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <!-- For JavaConfig --> |
| 55 | + <dependency> |
| 56 | + <groupId>cglib</groupId> |
| 57 | + <artifactId>cglib</artifactId> |
| 58 | + <version>2.2.2</version> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <!-- SPRING DATA --> |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework.data</groupId> |
| 65 | + <artifactId>spring-data-commons</artifactId> |
| 66 | + <version>${springdata.commons}</version> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <!-- APACHE --> |
| 70 | + <dependency> |
| 71 | + <groupId>commons-lang</groupId> |
| 72 | + <artifactId>commons-lang</artifactId> |
| 73 | + <version>${commonslang}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>commons-collections</groupId> |
| 77 | + <artifactId>commons-collections</artifactId> |
| 78 | + <version>${commonscollections}</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + <!-- JODA Time --> |
| 82 | + <dependency> |
| 83 | + <groupId>joda-time</groupId> |
| 84 | + <artifactId>joda-time</artifactId> |
| 85 | + <version>${jodatime}</version> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <!-- Elasticsearch --> |
| 89 | + <dependency> |
| 90 | + <groupId>org.elasticsearch</groupId> |
| 91 | + <artifactId>elasticsearch</artifactId> |
| 92 | + <version>${elasticsearch}</version> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <!-- Jackson JSON Mapper --> |
| 96 | + <dependency> |
| 97 | + <groupId>org.codehaus.jackson</groupId> |
| 98 | + <artifactId>jackson-mapper-asl</artifactId> |
| 99 | + <version>${jackson}</version> |
| 100 | + </dependency> |
| 101 | + |
| 102 | + <!-- CDI --> |
| 103 | + <dependency> |
| 104 | + <groupId>javax.enterprise</groupId> |
| 105 | + <artifactId>cdi-api</artifactId> |
| 106 | + <version>${cdi}</version> |
| 107 | + <scope>provided</scope> |
| 108 | + <optional>true</optional> |
| 109 | + </dependency> |
| 110 | + |
| 111 | + <!-- Test --> |
| 112 | + <dependency> |
| 113 | + <groupId>org.springframework</groupId> |
| 114 | + <artifactId>spring-test</artifactId> |
| 115 | + <version>${spring}</version> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.apache.openwebbeans.test</groupId> |
| 120 | + <artifactId>cditest-owb</artifactId> |
| 121 | + <version>${webbeans}</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + |
| 125 | + </dependencies> |
| 126 | + |
| 127 | + <build> |
| 128 | + <plugins> |
| 129 | + <plugin> |
129 | 130 | <groupId>org.apache.maven.plugins</groupId>
|
130 | 131 | <artifactId>maven-assembly-plugin</artifactId>
|
131 | 132 | </plugin>
|
132 | 133 | <plugin>
|
133 | 134 | <groupId>org.codehaus.mojo</groupId>
|
134 | 135 | <artifactId>wagon-maven-plugin</artifactId>
|
135 | 136 | </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> |
| 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> |
148 | 149 | <repository>
|
149 | 150 | <id>spring-libs-snapshot</id>
|
150 | 151 | <url>http://repo.springsource.org/lib-snapshot-local</url>
|
151 | 152 | </repository>
|
152 | 153 | </repositories>
|
153 |
| - |
| 154 | + |
154 | 155 | <scm>
|
155 |
| - <url>https://github.com/SpringSource/spring-data-elasticsearch</url> |
156 |
| - <connection>scm:git:git://github.com/SpringSource/spring-data-elasticsearch.git</connection> |
157 |
| - < developerConnection>scm:git:ssh:// [email protected]:SpringSource/spring-data-elasticsearch.git</ developerConnection> |
158 |
| - </scm> |
159 |
| - |
160 |
| - <ciManagement> |
161 |
| - <system>Bamboo</system> |
162 |
| - <url>http://build.springsource.org/browse/SPRINGDATAESh</url> |
163 |
| - </ciManagement> |
164 |
| - |
165 |
| - <issueManagement> |
166 |
| - <system>JIRA</system> |
167 |
| - <url>https://jira.springsource.org/browse/DATAES</url> |
| 156 | + <url>https://github.com/SpringSource/spring-data-elasticsearch</url> |
| 157 | + <connection>scm:git:git://github.com/SpringSource/spring-data-elasticsearch.git</connection> |
| 158 | + < developerConnection>scm:git:ssh:// [email protected]:SpringSource/spring-data-elasticsearch.git |
| 159 | + </developerConnection> |
| 160 | + </scm> |
| 161 | + |
| 162 | + <ciManagement> |
| 163 | + <system>Bamboo</system> |
| 164 | + <url>http://build.springsource.org/browse/SPRINGDATAES</url> |
| 165 | + </ciManagement> |
| 166 | + |
| 167 | + <issueManagement> |
| 168 | + <system>JIRA</system> |
| 169 | + <url>https://jira.springsource.org/browse/DATAES</url> |
168 | 170 | </issueManagement>
|
169 | 171 |
|
170 | 172 | </project>
|
0 commit comments