forked from cucumber-attic/cuke4duke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
91 lines (85 loc) · 2.6 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cuke4duke</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>0.3.0</version>
<name>Cuke4Duke Main Project</name>
<url>http://cukes.info/</url>
<scm>
<connection>scm:git:git://github.com/aslakhellesoy/cuke4duke.git</connection>
</scm>
<distributionManagement>
<repository>
<id>cukes</id>
<name>Cucumber Maven Repo</name>
<url>scp://cukes.info/home/6664/users/.home/domains/cukes.info/html/maven</url>
</repository>
<site>
<id>cukes</id>
<url>scp://cukes.info/home/6664/users/.home/domains/cukes.info/html/cuke4duke</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>codehaus</id>
<url>http://repository.codehaus.org</url>
</repository>
</repositories>
<modules>
<module>cuke4duke</module>
<module>cuke4duke-maven-plugin</module>
</modules>
<profiles>
<profile>
<id>examples</id>
<modules>
<module>examples/guice</module>
<module>examples/java-webdriver</module>
<module>examples/groovy-webdriver</module>
<module>examples/java</module>
<module>examples/groovy</module>
<module>examples/java-ejb3</module>
<module>examples/scala</module>
<module>examples/clojure</module>
<module>examples/ioke</module>
<module>examples/spring</module>
<module>examples/celerity</module>
<!-- Broken now because of new v8 support in Cucumber -->
<module>examples/javascript</module>
</modules>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>bind-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>