Skip to content

Commit

Permalink
Dependency updates - Upgraded to latest Spring Data releases.
Browse files Browse the repository at this point in the history
Spring Data Gemfire - 1.2.1.RELEASE
Spring Data JPA - 1.2.0.RELEASE
Spring Data MongoDB - 1.1.1.RELEASE
Spring Data Neo4j - 2.1.0.RELEASE
Spring Data REST - 1.0.0.RELEASE

Polished Querydsl configuration to be consistent across modules.
  • Loading branch information
odrotbohm committed Oct 30, 2012
1 parent 68b634b commit a1181ef
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 39 deletions.
2 changes: 1 addition & 1 deletion gemfire/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-gemfire</artifactId>
<version>1.2.0.RELEASE</version>
<version>1.2.1.RELEASE</version>
</dependency>

<dependency>
Expand Down
4 changes: 1 addition & 3 deletions jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@
<groupId>com.mysema.maven</groupId>
<artifactId>maven-apt-plugin</artifactId>
<version>1.0.4</version>
<configuration>
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
</configuration>
<dependencies>
<dependency>
<groupId>com.mysema.querydsl</groupId>
Expand All @@ -93,6 +90,7 @@
</goals>
<configuration>
<outputDirectory>target/generated-sources</outputDirectory>
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
Expand Down
6 changes: 2 additions & 4 deletions mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.1.0.RELEASE</version>
<version>1.1.1.RELEASE</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -51,9 +51,6 @@
<groupId>com.mysema.maven</groupId>
<artifactId>maven-apt-plugin</artifactId>
<version>1.0.4</version>
<configuration>
<processor>org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
Expand All @@ -62,6 +59,7 @@
</goals>
<configuration>
<outputDirectory>target/generated-sources</outputDirectory>
<processor>org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
Expand Down
29 changes: 13 additions & 16 deletions neo4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<neo4j.version>1.8.M07</neo4j.version>
</properties>

<dependencies>

<dependency>
Expand Down Expand Up @@ -45,9 +41,9 @@
</dependency>

<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>3.5.0</version>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher-dsl</artifactId>
<version>1.8</version>
</dependency>

<dependency>
Expand All @@ -70,23 +66,24 @@
<groupId>com.mysema.maven</groupId>
<artifactId>maven-apt-plugin</artifactId>
<version>1.0.4</version>
<configuration>
<outputDirectory>target/generated-sources/java</outputDirectory>
<processor>org.springframework.data.neo4j.querydsl.SDNAnnotationProcessor</processor>
</configuration>
<dependencies>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl.version}</version>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources</outputDirectory>
<processor>org.springframework.data.neo4j.querydsl.SDNAnnotationProcessor
</processor>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
11 changes: 0 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,18 +140,7 @@
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>spring-snapshots</id>
<url>http://repo.springsource.org/libs-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>

</repositories>

</project>
4 changes: 1 addition & 3 deletions querydsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
<groupId>com.mysema.maven</groupId>
<artifactId>maven-apt-plugin</artifactId>
<version>1.0.4</version>
<configuration>
<processor>com.mysema.query.apt.QuerydslAnnotationProcessor</processor>
</configuration>
<dependencies>
<dependency>
<groupId>com.mysema.querydsl</groupId>
Expand All @@ -51,6 +48,7 @@
</goals>
<configuration>
<outputDirectory>target/generated-sources/java</outputDirectory>
<processor>com.mysema.query.apt.QuerydslAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RELEASE</version>
</dependency>

<!-- Spring -->
Expand Down

0 comments on commit a1181ef

Please sign in to comment.