mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-16 21:01:10 +08:00
Updated maven apt plugin version to 0.3.1
This commit is contained in:
parent
fa53168693
commit
3ef8e4ca94
@ -50,7 +50,7 @@
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>maven-apt-plugin</artifactId>
|
||||
<version>0.3.0</version>
|
||||
<version>0.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
|
||||
@ -45,6 +45,7 @@ public class ColQuerySerializer extends SerializerBase<ColQuerySerializer> {
|
||||
handle((Expr<?>) path.getMetadata().getParent());
|
||||
append(".").append(prefix);
|
||||
append(StringUtils.capitalize(path.getMetadata().getExpression().toString()) + "()");
|
||||
|
||||
}else{
|
||||
if (pathType.isGeneric()){
|
||||
append("((").append(path.getType().getName()).append(")");
|
||||
|
||||
@ -7,9 +7,14 @@ package com.mysema.query.binding.domain;
|
||||
|
||||
import com.mysema.query.annotations.Entity;
|
||||
|
||||
/**
|
||||
* @author tiwe
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
public class Address {
|
||||
|
||||
|
||||
// 象形字
|
||||
long id;
|
||||
|
||||
String streetName, zipCode, town;
|
||||
|
||||
@ -98,7 +98,7 @@
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>maven-apt-plugin</artifactId>
|
||||
<version>0.3.0</version>
|
||||
<version>0.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
|
||||
@ -91,7 +91,7 @@
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>maven-apt-plugin</artifactId>
|
||||
<version>0.3.0</version>
|
||||
<version>0.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
@ -106,14 +106,7 @@
|
||||
</processors> -->
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.mysema.querydsl</groupId>
|
||||
<artifactId>querydsl-apt</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<properties>
|
||||
<svn.path>scm:svn:https://source.mysema.com/svn/mysema</svn.path>
|
||||
<viewvc.path>https://source.mysema.com/viewvc/mysema</viewvc.path>
|
||||
<path.suffix>projects/querydsl/trunk/${project.artifactId}</path.suffix>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user