Skip to content

Commit bdca0bf

Browse files
committed
Merge pull request #4 from jreijn/master
DATACOUCH-22: Add plugin repo to be able to resolve bundlor.maven plugin
2 parents ef3ad73 + 80dbab1 commit bdca0bf

File tree

1 file changed

+104
-97
lines changed

1 file changed

+104
-97
lines changed

pom.xml

Lines changed: 104 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,107 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<groupId>org.springframework.data</groupId>
7-
<artifactId>spring-data-couchbase</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
9-
10-
<name>Spring Data Couchbase</name>
11-
<description>Spring Data integration for Couchbase</description>
12-
<url>https://github.com/SpringSource/spring-data-couchbase</url>
13-
14-
<parent>
15-
<groupId>org.springframework.data.build</groupId>
16-
<artifactId>spring-data-parent</artifactId>
17-
<version>1.1.0.RELEASE</version>
18-
</parent>
19-
20-
<properties>
21-
<couchbase>1.1.8</couchbase>
22-
<jackson>2.2.2</jackson>
23-
<springdata.commons>1.6.0.BUILD-SNAPSHOT</springdata.commons>
24-
</properties>
25-
26-
<dependencies>
27-
28-
<dependency>
29-
<groupId>org.springframework</groupId>
30-
<artifactId>spring-context</artifactId>
31-
<version>${spring}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.springframework</groupId>
35-
<artifactId>spring-web</artifactId>
36-
<version>${spring}</version>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.springframework</groupId>
40-
<artifactId>spring-tx</artifactId>
41-
<version>${spring}</version>
42-
</dependency>
43-
44-
<dependency>
45-
<groupId>${groupId}</groupId>
46-
<artifactId>spring-data-commons</artifactId>
47-
<version>${springdata.commons}</version>
48-
</dependency>
49-
50-
<dependency>
51-
<groupId>couchbase</groupId>
52-
<artifactId>couchbase-client</artifactId>
53-
<version>${couchbase}</version>
54-
</dependency>
55-
56-
<dependency>
57-
<groupId>cglib</groupId>
58-
<artifactId>cglib</artifactId>
59-
<version>2.2.2</version>
60-
<scope>test</scope>
61-
</dependency>
62-
63-
<dependency>
64-
<groupId>junit</groupId>
65-
<artifactId>junit</artifactId>
66-
<version>${junit}</version>
67-
<scope>test</scope>
68-
</dependency>
69-
70-
<dependency>
71-
<groupId>org.springframework</groupId>
72-
<artifactId>spring-test</artifactId>
73-
<version>${spring}</version>
74-
<scope>test</scope>
75-
</dependency>
76-
77-
<dependency>
78-
<groupId>com.fasterxml.jackson.core</groupId>
79-
<artifactId>jackson-databind</artifactId>
80-
<version>${jackson}</version>
81-
</dependency>
82-
83-
</dependencies>
84-
85-
<repositories>
86-
<repository>
87-
<id>couchbase</id>
88-
<name>Couchbase Maven Repository</name>
89-
<url>http://files.couchbase.com/maven2/</url>
90-
<snapshots>
91-
<enabled>false</enabled>
92-
</snapshots>
93-
</repository>
94-
<repository>
95-
<id>spring-lib-snapshot</id>
96-
<url>http://repo.springsource.org/libs-snapshot-local</url>
97-
</repository>
98-
</repositories>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>org.springframework.data</groupId>
7+
<artifactId>spring-data-couchbase</artifactId>
8+
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
10+
<name>Spring Data Couchbase</name>
11+
<description>Spring Data integration for Couchbase</description>
12+
<url>https://github.com/SpringSource/spring-data-couchbase</url>
13+
14+
<parent>
15+
<groupId>org.springframework.data.build</groupId>
16+
<artifactId>spring-data-parent</artifactId>
17+
<version>1.1.0.RELEASE</version>
18+
</parent>
19+
20+
<properties>
21+
<couchbase>1.1.8</couchbase>
22+
<jackson>2.2.2</jackson>
23+
<springdata.commons>1.6.0.BUILD-SNAPSHOT</springdata.commons>
24+
</properties>
25+
26+
<dependencies>
27+
28+
<dependency>
29+
<groupId>org.springframework</groupId>
30+
<artifactId>spring-context</artifactId>
31+
<version>${spring}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.springframework</groupId>
35+
<artifactId>spring-web</artifactId>
36+
<version>${spring}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.springframework</groupId>
40+
<artifactId>spring-tx</artifactId>
41+
<version>${spring}</version>
42+
</dependency>
43+
44+
<dependency>
45+
<groupId>${project.groupId}</groupId>
46+
<artifactId>spring-data-commons</artifactId>
47+
<version>${springdata.commons}</version>
48+
</dependency>
49+
50+
<dependency>
51+
<groupId>couchbase</groupId>
52+
<artifactId>couchbase-client</artifactId>
53+
<version>${couchbase}</version>
54+
</dependency>
55+
56+
<dependency>
57+
<groupId>cglib</groupId>
58+
<artifactId>cglib</artifactId>
59+
<version>2.2.2</version>
60+
<scope>test</scope>
61+
</dependency>
62+
63+
<dependency>
64+
<groupId>junit</groupId>
65+
<artifactId>junit</artifactId>
66+
<version>${junit}</version>
67+
<scope>test</scope>
68+
</dependency>
69+
70+
<dependency>
71+
<groupId>org.springframework</groupId>
72+
<artifactId>spring-test</artifactId>
73+
<version>${spring}</version>
74+
<scope>test</scope>
75+
</dependency>
76+
77+
<dependency>
78+
<groupId>com.fasterxml.jackson.core</groupId>
79+
<artifactId>jackson-databind</artifactId>
80+
<version>${jackson}</version>
81+
</dependency>
82+
83+
</dependencies>
84+
85+
<repositories>
86+
<repository>
87+
<id>couchbase</id>
88+
<name>Couchbase Maven Repository</name>
89+
<url>http://files.couchbase.com/maven2/</url>
90+
<snapshots>
91+
<enabled>false</enabled>
92+
</snapshots>
93+
</repository>
94+
<repository>
95+
<id>spring-lib-snapshot</id>
96+
<url>http://repo.springsource.org/libs-snapshot-local</url>
97+
</repository>
98+
</repositories>
99+
100+
<pluginRepositories>
101+
<pluginRepository>
102+
<id>spring-release-bundles</id>
103+
<url>http://repository.springsource.com/maven/bundles/release/</url>
104+
</pluginRepository>
105+
</pluginRepositories>
99106

100107
</project>

0 commit comments

Comments
 (0)