Changeset 1123
- Timestamp:
- 09/19/11 19:08:14 (21 months ago)
- Location:
- raptor-ica/trunk
- Files:
-
- 2 edited
-
.settings/org.maven.ide.eclipse.prefs (modified) (1 diff)
-
pom.xml (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
raptor-ica/trunk/.settings/org.maven.ide.eclipse.prefs
r729 r1123 1 #Mon May 02 20:49:46BST 20111 #Mon Sep 19 19:02:04 BST 2011 2 2 activeProfiles= 3 3 eclipse.preferences.version=1 -
raptor-ica/trunk/pom.xml
r1118 r1123 3 3 <groupId>uk.ac.cardiff.raptor</groupId> 4 4 <artifactId>raptor-ica</artifactId> 5 <version>0.2. 1-SNAPSHOT</version>5 <version>0.2.0-SNAPSHOT</version> 6 6 <name>Raptor Information Collector Agent</name> 7 7 <description> </description> … … 81 81 <properties> 82 82 <jetty.version>6.1.23</jetty.version> 83 <apache.cxf.version>2.2.8</apache.cxf.version> 84 <spring.version>3.0.2.RELEASE</spring.version> 83 <spring.version>3.0.3.RELEASE</spring.version> 85 84 </properties> 86 85 … … 104 103 <version>0.1.6-SNAPSHOT</version> 105 104 </dependency> 106 107 108 <!-- CXF -->109 <dependency>110 <groupId>org.apache.cxf</groupId>111 <artifactId>cxf-rt-frontend-jaxws</artifactId>112 <version>${apache.cxf.version}</version>113 <exclusions>114 <exclusion>115 <groupId>asm</groupId>116 <artifactId>asm</artifactId>117 </exclusion>118 </exclusions>119 </dependency>120 <dependency>121 <groupId>org.apache.cxf</groupId>122 <artifactId>cxf-rt-databinding-aegis</artifactId>123 <version>${apache.cxf.version}</version>124 </dependency>125 <dependency>126 <groupId>org.apache.cxf</groupId>127 <artifactId>cxf-rt-transports-http</artifactId>128 <version>${apache.cxf.version}</version>129 </dependency>130 131 105 132 106 <!-- SPRING --> … … 476 450 </configuration> 477 451 </execution> 452 <execution> 453 <id>copy-resources-bin</id> 454 <!-- here the phase you need --> 455 <phase>prepare-package</phase> 456 <goals> 457 <goal>copy-resources</goal> 458 </goals> 459 <configuration> 460 <outputDirectory>${basedir}/target/bin</outputDirectory> 461 <resources> 462 <resource> 463 <directory>src/main/bin</directory> 464 <filtering>true</filtering> 465 </resource> 466 </resources> 467 </configuration> 468 </execution> 469 <execution> 470 <id>copy-resources-keys</id> 471 <!-- here the phase you need --> 472 <phase>prepare-package</phase> 473 <goals> 474 <goal>copy-resources</goal> 475 </goals> 476 <configuration> 477 <outputDirectory>${basedir}/target/keys</outputDirectory> 478 <resources> 479 <resource> 480 <directory>src/main/keys</directory> 481 <filtering>true</filtering> 482 </resource> 483 </resources> 484 </configuration> 485 </execution> 486 <execution> 487 <id>copy-resources-conf</id> 488 <!-- here the phase you need --> 489 <phase>prepare-package</phase> 490 <goals> 491 <goal>copy-resources</goal> 492 </goals> 493 <configuration> 494 <outputDirectory>${basedir}/target/conf</outputDirectory> 495 <resources> 496 <resource> 497 <directory>src/main/config</directory> 498 <filtering>true</filtering> 499 </resource> 500 </resources> 501 </configuration> 502 </execution> 478 503 </executions> 479 504 </plugin> 480 <plugin> 481 <artifactId>maven-resources-plugin</artifactId> 482 <version>2.5</version> 483 <executions> 484 <execution> 485 <id>copy-resources-bin</id> 486 <!-- here the phase you need --> 487 <phase>prepare-package</phase> 488 <goals> 489 <goal>copy-resources</goal> 490 </goals> 491 <configuration> 492 <outputDirectory>${basedir}/target/bin</outputDirectory> 493 <resources> 494 <resource> 495 <directory>src/main/bin</directory> 496 <filtering>true</filtering> 497 </resource> 498 </resources> 499 </configuration> 500 </execution> 501 </executions> 502 </plugin> 503 <plugin> 504 <artifactId>maven-resources-plugin</artifactId> 505 <version>2.5</version> 506 <executions> 507 <execution> 508 <id>copy-resources-keys</id> 509 <!-- here the phase you need --> 510 <phase>prepare-package</phase> 511 <goals> 512 <goal>copy-resources</goal> 513 </goals> 514 <configuration> 515 <outputDirectory>${basedir}/target/keys</outputDirectory> 516 <resources> 517 <resource> 518 <directory>src/main/keys</directory> 519 <filtering>true</filtering> 520 </resource> 521 </resources> 522 </configuration> 523 </execution> 524 </executions> 525 </plugin> 526 <plugin> 527 <artifactId>maven-resources-plugin</artifactId> 528 <version>2.5</version> 529 <executions> 530 <execution> 531 <id>copy-resources-conf</id> 532 <!-- here the phase you need --> 533 <phase>prepare-package</phase> 534 <goals> 535 <goal>copy-resources</goal> 536 </goals> 537 <configuration> 538 <outputDirectory>${basedir}/target/conf</outputDirectory> 539 <resources> 540 <resource> 541 <directory>src/main/config</directory> 542 <filtering>true</filtering> 543 </resource> 544 </resources> 545 </configuration> 546 </execution> 547 </executions> 548 </plugin> 505 549 506 550 507 <!-- PLUGIN to COPY correct directories into the target directory for
Note: See TracChangeset
for help on using the changeset viewer.
