mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-24 21:07:26 +08:00
#579985 : added apt jar creation
This commit is contained in:
parent
0fdb8d63fe
commit
f05b91330f
@ -116,7 +116,24 @@
|
||||
</repositories>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>apt</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classifier>apt</classifier>
|
||||
<classesDirectory>src/apt</classesDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>maven-apt-plugin</artifactId>
|
||||
|
||||
@ -0,0 +1 @@
|
||||
com.mysema.query.apt.jpa.JPAAnnotationProcessor
|
||||
@ -96,6 +96,23 @@
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>apt</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classifier>apt</classifier>
|
||||
<classesDirectory>src/apt</classesDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- this plugin does the JDO class enhancement -->
|
||||
<plugin>
|
||||
<groupId>org.datanucleus</groupId>
|
||||
|
||||
@ -0,0 +1 @@
|
||||
com.mysema.query.apt.jdo.JDOAnnotationProcessor
|
||||
Loading…
Reference in New Issue
Block a user