Changeset 584
- Timestamp:
- 08/21/12 15:11:06 (12 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 1 deleted
- 2 edited
- 3 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-php/pom.xml
r516 r584 20 20 <version>0.0.1-SNAPSHOT</version> 21 21 </dependency> 22 <dependency> 23 <groupId>de.ugoe.cs.quest</groupId> 24 <artifactId>quest-core-events</artifactId> 25 <version>0.0.1-SNAPSHOT</version> 26 </dependency> 27 <dependency> 28 <groupId>de.ugoe.cs.quest</groupId> 29 <artifactId>quest-ui-core</artifactId> 30 <version>0.0.1-SNAPSHOT</version> 31 </dependency> 22 32 </dependencies> 23 33 <build> … … 31 41 </configuration> 32 42 </plugin> 43 <plugin> 44 <artifactId>maven-assembly-plugin</artifactId> 45 <version>2.2-beta-2</version> 46 <configuration> 47 <descriptors> 48 <descriptor>src/main/assembly/config.xml</descriptor> 49 </descriptors> 50 </configuration> 51 <executions> 52 <execution> 53 <id>make-assembly</id> 54 <phase>package</phase> 55 <goals> 56 <goal>single</goal> 57 </goals> 58 </execution> 59 </executions> 60 </plugin> 33 61 </plugins> 34 62 </build> -
trunk/quest-runner/pom.xml
r582 r584 170 170 </configuration> 171 171 </execution> 172 <execution> 173 <id>get-php-plugin-config</id> 174 <phase>process-classes</phase> 175 <goals> 176 <goal>unpack</goal> 177 </goals> 178 <configuration> 179 <artifactItems> 180 <artifactItem> 181 <groupId>de.ugoe.cs.quest</groupId> 182 <artifactId>quest-plugin-php</artifactId> 183 <version>0.0.1-SNAPSHOT</version> 184 <classifier>config</classifier> 185 <type>zip</type> 186 <outputDirectory>${project.build.directory}/data</outputDirectory> 187 </artifactItem> 188 </artifactItems> 189 </configuration> 190 </execution> 172 191 </executions> 173 192 </plugin>
Note: See TracChangeset
for help on using the changeset viewer.