Changeset 27304
- Timestamp:
- 11/15/07 19:18:07 (3 years ago)
- Files:
-
- nuxeo-ep/trunk/pom.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nuxeo-ep/trunk/pom.xml
r27181 r27304 57 57 58 58 <dependencyManagement> 59 <dependencies> 59 <dependencies> 60 60 <dependency> 61 61 <groupId>com.sun.facelets</groupId> … … 360 360 361 361 <dependencies> 362 <!-- needed by APT for annotation processing --> 363 <dependency> 364 <groupId>org.nuxeo.build</groupId> 365 <artifactId>nuxeo-apt-extensions</artifactId> 366 <version>1.0-SNAPSHOT</version> 367 <scope>compile</scope> 368 </dependency> 362 369 <dependency> 363 370 <groupId>junit</groupId> 364 371 <artifactId>junit</artifactId> 365 372 <scope>test</scope> 366 </dependency> 373 </dependency> 367 374 </dependencies> 368 375 … … 385 392 </configuration> 386 393 </plugin> 394 <!-- APT plugin for annotation preprocessing --> 395 <plugin> 396 <groupId>org.apache.myfaces.tobago</groupId> 397 <artifactId>maven-apt-plugin</artifactId> 398 <configuration> 399 <generated>/target/generated/</generated> 400 <nocompile>true</nocompile> 401 <target>1.5</target> 402 </configuration> 403 <executions> 404 <execution> 405 <id>generate-bindings</id> 406 <goals> 407 <goal>execute</goal> 408 </goals> 409 </execution> 410 </executions> 411 </plugin> 412 387 413 <plugin> 388 414 <groupId>org.apache.maven.plugins</groupId>
