Skip to content

Commit 908c857

Browse files
author
Daniel
committed
Fixed main pom.
1 parent 8db08f8 commit 908c857

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

pom.xml

+18-5
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,22 @@
2020
<module>redis-message-client</module>
2121
<module>redis-message-server</module>
2222
</modules>
23+
24+
<build>
25+
<plugins>
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<configuration>
30+
<source>1.7</source>
31+
<target>1.7</target>
32+
</configuration>
33+
</plugin>
34+
</plugins>
35+
</build>
2336

2437
<dependencyManagement>
2538
<dependencies>
26-
<dependency>
27-
<groupId>com.cspinformatique.redis.message</groupId>
28-
<artifactId>redis-message-core</artifactId>
29-
<version>0.0.1-SNAPSHOT</version>
30-
</dependency>
3139
<dependency>
3240
<groupId>com.cspinformatique</groupId>
3341
<artifactId>commons</artifactId>
@@ -38,6 +46,11 @@
3846
<artifactId>jredis</artifactId>
3947
<version>1.0 RC2</version>
4048
</dependency>
49+
<dependency>
50+
<groupId>com.cspinformatique.redis.message</groupId>
51+
<artifactId>redis-message-core</artifactId>
52+
<version>${project.version}</version>
53+
</dependency>
4154
</dependencies>
4255
</dependencyManagement>
4356
</project>

0 commit comments

Comments
 (0)