Last change
on this file since 728 was
671,
checked in by sherbold, 12 years ago
|
- moved CommandHelpers? from quest-ui-core to quest-misc
- removed dependency on quest-ui-core from all quest-plugin projects
|
-
Property svn:mime-type set to
text/plain
|
File size:
1.8 KB
|
Rev | Line | |
---|
[516] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
| 3 | <modelVersion>4.0.0</modelVersion>
|
---|
| 4 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 5 | <artifactId>quest-plugin-php</artifactId>
|
---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 7 | <name>quest-plugin-php</name>
|
---|
| 8 | <scm>
|
---|
| 9 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-php</url>
|
---|
| 10 | </scm>
|
---|
| 11 | <dependencies>
|
---|
| 12 | <dependency>
|
---|
| 13 | <groupId>de.ugoe.cs</groupId>
|
---|
| 14 | <artifactId>java-utils</artifactId>
|
---|
| 15 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 16 | </dependency>
|
---|
| 17 | <dependency>
|
---|
| 18 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 19 | <artifactId>quest-plugin-core</artifactId>
|
---|
| 20 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 21 | </dependency>
|
---|
[584] | 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>
|
---|
[671] | 29 | <artifactId>quest-misc</artifactId>
|
---|
[584] | 30 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 31 | </dependency>
|
---|
[516] | 32 | </dependencies>
|
---|
| 33 | <build>
|
---|
| 34 | <plugins>
|
---|
| 35 | <plugin>
|
---|
| 36 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 37 | <version>2.3.2</version>
|
---|
| 38 | <configuration>
|
---|
| 39 | <source>1.6</source>
|
---|
| 40 | <target>1.6</target>
|
---|
| 41 | </configuration>
|
---|
| 42 | </plugin>
|
---|
[584] | 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>
|
---|
[516] | 61 | </plugins>
|
---|
| 62 | </build>
|
---|
| 63 | </project> |
---|
Note: See
TracBrowser
for help on using the repository browser.