-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
173 lines (159 loc) · 6.92 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<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>
<parent>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.2.4</version>
</parent>
<artifactId>cucumber-ate</artifactId>
<packaging>jar</packaging>
<name>Cucumber-JVM: Xml</name>
<repositories>
<repository>
<id>repo-id</id>
<name>repo-name</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bigtester</groupId>
<artifactId>org.bigtester.ate.core</artifactId>
<version>0.2.0-SNAPSHOT</version>
</dependency>
<!-- <dependency> -->
<!-- <groupId>info.cukes</groupId> -->
<!-- <artifactId>cucumber-core</artifactId> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>info.cukes</groupId> -->
<!-- <artifactId>cucumber-jvm-deps</artifactId> -->
<!-- <scope>provided</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>info.cukes</groupId> -->
<!-- <artifactId>gherkin</artifactId> -->
<!-- <scope>provided</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>info.cukes</groupId> -->
<!-- <artifactId>cucumber-junit</artifactId> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- <plugin> -->
<!-- <groupId>org.apache.maven.plugins</groupId> -->
<!-- <artifactId>maven-antrun-plugin</artifactId> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>generate-i18n-sources</id> -->
<!-- <goals> -->
<!-- <goal>run</goal> -->
<!-- </goals> -->
<!-- <phase>generate-sources</phase> -->
<!-- <configuration> -->
<!-- <target> -->
<!-- <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="maven.plugin.classpath" /> -->
<!-- <groovy><![CDATA[ -->
<!-- import groovy.text.SimpleTemplateEngine -->
<!-- import gherkin.I18n -->
<!-- def engine = new SimpleTemplateEngine() -->
<!-- def templateSource = new File(project.baseDir, "src${File.separator}main${File.separator}code_generator${File.separator}I18n.java.txt").getText() -->
<!-- def normalize(s) { -->
<!-- if(System.getProperty("java.version").startsWith("1.6")) { -->
<!-- return s -->
<!-- } else { -->
<!-- return java.text.Normalizer.normalize(s, java.text.Normalizer.Form.NFC) -->
<!-- } -->
<!-- } -->
<!-- // TODO: Need to add i18n.getName() and i18n.getNative() for better names. -->
<!-- def package_html = """\ -->
<!-- <body> -->
<!-- <p> -->
<!-- \${i18n.getLocale().getDisplayLanguage()} -->
<!-- </p> -->
<!-- </body> -->
<!-- """ -->
<!-- def unsupported = [] // We used to have problems with "kn", but it seems ok now. -->
<!-- I18n.all.each { i18n -> -->
<!-- if (!unsupported.contains(i18n.underscoredIsoCode)) { -->
<!-- i18n.codeKeywords.each { kw -> -->
<!-- def normalized_kw = normalize(kw) -->
<!-- def binding = ["i18n":i18n, "kw":normalized_kw] -->
<!-- def template = engine.createTemplate(templateSource).make(binding) -->
<!-- def file = new File(project.baseDir, "target${File.separator}generated-sources${File.separator}i18n${File.separator}java${File.separator}cucumber${File.separator}api${File.separator}java${File.separator}${i18n.underscoredIsoCode}${File.separator}${normalized_kw}.java") -->
<!-- file.parentFile.mkdirs() -->
<!-- file.write(template.toString(), "UTF-8") -->
<!-- } -->
<!-- // html -->
<!-- def binding = ["i18n":i18n] -->
<!-- def html = engine.createTemplate(package_html).make(binding).toString() -->
<!-- def file = new File(project.baseDir, "target${File.separator}generated-sources${File.separator}i18n${File.separator}java${File.separator}cucumber${File.separator}api${File.separator}java${File.separator}${i18n.underscoredIsoCode}${File.separator}package.html") -->
<!-- file.write(html, "UTF-8") -->
<!-- } -->
<!-- } -->
<!-- ]]></groovy> -->
<!-- </target> -->
<!-- </configuration> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- </plugin> -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/target/generated-sources/i18n/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Description />
<Export-Package>cucumber.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>