cuke4duke 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -38,7 +38,7 @@ Build again:
38
38
 
39
39
  If all is OK, commit:
40
40
 
41
- <pre>git commit -am "Release"</pre>
41
+ <pre>git commit -m "Release"</pre>
42
42
 
43
43
  And release:
44
44
 
@@ -1,5 +1,11 @@
1
1
  require 'rexml/document'
2
2
 
3
3
  module Cuke4Duke
4
- VERSION = REXML::XPath.first(REXML::Document.new(IO.read(File.dirname(__FILE__) + '/../../pom.xml')), '//xmlns:project/xmlns:version/text()').to_s.gsub(/-SNAPSHOT$/, '.beta')
4
+ pom_version = REXML::XPath.first(REXML::Document.new(IO.read(File.dirname(__FILE__) + '/../../pom.xml')), '//xmlns:project/xmlns:version/text()').to_s
5
+ if pom_version =~ /(.*)-SNAPSHOT$/
6
+ VERSION = "#{$1}.beta"
7
+ else
8
+ VERSION = pom_version
9
+ end
10
+ JAR_NAME = "cuke4duke-#{pom_version}.jar"
5
11
  end
Binary file
data/pom.xml ADDED
@@ -0,0 +1,267 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0"
2
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
+ <modelVersion>4.0.0</modelVersion>
6
+ <groupId>cuke4duke</groupId>
7
+ <artifactId>parent</artifactId>
8
+ <packaging>pom</packaging>
9
+ <version>0.4.2</version>
10
+ <name>Cuke4Duke: Parent</name>
11
+ <url>http://cukes.info/</url>
12
+
13
+
14
+ <properties>
15
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17
+
18
+ <gherkin.version>2.2.8</gherkin.version>
19
+ <jruby.version>1.5.3</jruby.version>
20
+ <ant.version>1.8.1</ant.version>
21
+ <pico.version>2.11.2</pico.version>
22
+ <spring.version>3.0.4.RELEASE</spring.version>
23
+ <guice.version>2.0</guice.version>
24
+ <groovy.version>1.7.5</groovy.version>
25
+ <scala.version>2.8.0</scala.version>
26
+ <clojure.version>1.2.0</clojure.version>
27
+ <rhino.version>1.7R2</rhino.version>
28
+ <ioke.version>P-0.4.0</ioke.version>
29
+ <junit.version>4.8.1</junit.version>
30
+ <mockito.version>1.8.5</mockito.version>
31
+ <selenium.version>2.0a5</selenium.version>
32
+ <log4j.version>1.2.14</log4j.version>
33
+ <commons-lang.version>2.4</commons-lang.version>
34
+ <javaee-api.version>5.0-1</javaee-api.version>
35
+ <openejb.version>3.1.2</openejb.version>
36
+ <hibernate.version>3.2.5.ga</hibernate.version>
37
+ <hibernate-entitymanager.version>3.2.1.ga</hibernate-entitymanager.version>
38
+ <asm.version>2.2.3</asm.version>
39
+ <cglib.version>2.1_3</cglib.version>
40
+ </properties>
41
+
42
+ <dependencyManagement>
43
+ <dependencies>
44
+ <dependency>
45
+ <groupId>cuke4duke</groupId>
46
+ <artifactId>cuke4duke</artifactId>
47
+ <version>${project.version}</version>
48
+ </dependency>
49
+ <dependency>
50
+ <groupId>gherkin</groupId>
51
+ <artifactId>gherkin</artifactId>
52
+ <version>${gherkin.version}</version>
53
+ </dependency>
54
+ <dependency>
55
+ <groupId>org.jruby</groupId>
56
+ <artifactId>jruby-complete</artifactId>
57
+ <version>${jruby.version}</version>
58
+ </dependency>
59
+ <dependency>
60
+ <groupId>org.apache.ant</groupId>
61
+ <artifactId>ant</artifactId>
62
+ <version>${ant.version}</version>
63
+ </dependency>
64
+ <dependency>
65
+ <groupId>org.picocontainer</groupId>
66
+ <artifactId>picocontainer</artifactId>
67
+ <version>${pico.version}</version>
68
+ </dependency>
69
+ <dependency>
70
+ <groupId>org.springframework</groupId>
71
+ <artifactId>spring-context</artifactId>
72
+ <version>${spring.version}</version>
73
+ </dependency>
74
+ <dependency>
75
+ <groupId>com.google.inject</groupId>
76
+ <artifactId>guice</artifactId>
77
+ <version>${guice.version}</version>
78
+ </dependency>
79
+ <dependency>
80
+ <groupId>org.codehaus.groovy</groupId>
81
+ <artifactId>groovy-all</artifactId>
82
+ <version>${groovy.version}</version>
83
+ </dependency>
84
+ <dependency>
85
+ <groupId>org.scala-lang</groupId>
86
+ <artifactId>scala-library</artifactId>
87
+ <version>${scala.version}</version>
88
+ </dependency>
89
+ <dependency>
90
+ <groupId>org.scala-lang</groupId>
91
+ <artifactId>scala-compiler</artifactId>
92
+ <version>${scala.version}</version>
93
+ </dependency>
94
+ <dependency>
95
+ <groupId>org.clojure</groupId>
96
+ <artifactId>clojure</artifactId>
97
+ <version>${clojure.version}</version>
98
+ </dependency>
99
+ <dependency>
100
+ <groupId>rhino</groupId>
101
+ <artifactId>js</artifactId>
102
+ <version>${rhino.version}</version>
103
+ </dependency>
104
+ <dependency>
105
+ <groupId>org.ioke</groupId>
106
+ <artifactId>ioke-lang</artifactId>
107
+ <version>${ioke.version}</version>
108
+ </dependency>
109
+ <dependency>
110
+ <groupId>org.ioke</groupId>
111
+ <artifactId>ioke-lang-lib</artifactId>
112
+ <version>${ioke.version}</version>
113
+ </dependency>
114
+ <dependency>
115
+ <groupId>junit</groupId>
116
+ <artifactId>junit</artifactId>
117
+ <version>${junit.version}</version>
118
+ </dependency>
119
+ <dependency>
120
+ <groupId>org.mockito</groupId>
121
+ <artifactId>mockito-all</artifactId>
122
+ <version>${mockito.version}</version>
123
+ </dependency>
124
+ <dependency>
125
+ <groupId>org.seleniumhq.selenium</groupId>
126
+ <artifactId>selenium-htmlunit-driver</artifactId>
127
+ <version>${selenium.version}</version>
128
+ </dependency>
129
+ <dependency>
130
+ <groupId>org.seleniumhq.selenium</groupId>
131
+ <artifactId>selenium-firefox-driver</artifactId>
132
+ <version>${selenium.version}</version>
133
+ </dependency>
134
+ <dependency>
135
+ <groupId>log4j</groupId>
136
+ <artifactId>log4j</artifactId>
137
+ <version>${log4j.version}</version>
138
+ </dependency>
139
+ <dependency>
140
+ <groupId>commons-lang</groupId>
141
+ <artifactId>commons-lang</artifactId>
142
+ <version>${commons-lang.version}</version>
143
+ </dependency>
144
+ <dependency>
145
+ <groupId>org.apache.openejb</groupId>
146
+ <artifactId>javaee-api</artifactId>
147
+ <version>${javaee-api.version}</version>
148
+ </dependency>
149
+ <dependency>
150
+ <groupId>org.apache.openejb</groupId>
151
+ <artifactId>openejb-core</artifactId>
152
+ <version>${openejb.version}</version>
153
+ </dependency>
154
+ <dependency>
155
+ <groupId>org.hibernate</groupId>
156
+ <artifactId>hibernate</artifactId>
157
+ <version>${hibernate.version}</version>
158
+ </dependency>
159
+ <dependency>
160
+ <groupId>org.hibernate</groupId>
161
+ <artifactId>hibernate-entitymanager</artifactId>
162
+ <version>${hibernate-entitymanager.version}</version>
163
+ </dependency>
164
+ <dependency>
165
+ <groupId>asm</groupId>
166
+ <artifactId>asm</artifactId>
167
+ <version>${asm.version}</version>
168
+ </dependency>
169
+ <dependency>
170
+ <groupId>cglib</groupId>
171
+ <artifactId>cglib-nodep</artifactId>
172
+ <version>${cglib.version}</version>
173
+ </dependency>
174
+
175
+ </dependencies>
176
+ </dependencyManagement>
177
+
178
+ <scm>
179
+ <connection>scm:git:git://github.com/aslakhellesoy/cuke4duke.git</connection>
180
+ </scm>
181
+
182
+ <distributionManagement>
183
+ <repository>
184
+ <id>cukes</id>
185
+ <name>Cucumber Maven Repo</name>
186
+ <url>scp://cukes.info/home/6664/users/.home/domains/cukes.info/html/maven</url>
187
+ </repository>
188
+ <site>
189
+ <id>cukes</id>
190
+ <url>scp://cukes.info/home/6664/users/.home/domains/cukes.info/html/cuke4duke</url>
191
+ </site>
192
+ </distributionManagement>
193
+
194
+ <repositories>
195
+ <repository>
196
+ <id>codehaus</id>
197
+ <url>http://repository.codehaus.org</url>
198
+ </repository>
199
+ <repository>
200
+ <id>cukes</id>
201
+ <url>http://cukes.info/maven</url>
202
+ </repository>
203
+ </repositories>
204
+
205
+ <pluginRepositories>
206
+ <pluginRepository>
207
+ <id>cukes</id>
208
+ <url>http://cukes.info/maven</url>
209
+ </pluginRepository>
210
+ </pluginRepositories>
211
+
212
+ <modules>
213
+ <module>cuke4duke</module>
214
+ <module>cuke4duke-maven-plugin</module>
215
+ </modules>
216
+
217
+ <profiles>
218
+ <profile>
219
+ <id>examples</id>
220
+ <modules>
221
+ <module>examples/java-ejb3</module>
222
+ <module>examples/java</module>
223
+ <module>examples/scala</module>
224
+ <module>examples/guice</module>
225
+ <module>examples/java-webdriver</module>
226
+ <module>examples/groovy-webdriver</module>
227
+ <module>examples/groovy</module>
228
+ <module>examples/clojure</module>
229
+ <module>examples/ioke</module>
230
+ <module>examples/spring</module>
231
+ <module>examples/celerity</module>
232
+ <!-- Broken now because of new v8 support in Cucumber -->
233
+ <!--module>examples/javascript</module-->
234
+ </modules>
235
+ </profile>
236
+ </profiles>
237
+
238
+ <build>
239
+ <pluginManagement>
240
+ <plugins>
241
+ <plugin>
242
+ <groupId>org.apache.maven.plugins</groupId>
243
+ <artifactId>maven-compiler-plugin</artifactId>
244
+ <configuration>
245
+ <encoding>UTF-8</encoding>
246
+ <source>1.5</source>
247
+ <target>1.5</target>
248
+ </configuration>
249
+ </plugin>
250
+ </plugins>
251
+ </pluginManagement>
252
+ <plugins>
253
+ <plugin>
254
+ <groupId>org.apache.maven.plugins</groupId>
255
+ <artifactId>maven-source-plugin</artifactId>
256
+ <executions>
257
+ <execution>
258
+ <id>bind-sources</id>
259
+ <goals>
260
+ <goal>jar</goal>
261
+ </goals>
262
+ </execution>
263
+ </executions>
264
+ </plugin>
265
+ </plugins>
266
+ </build>
267
+ </project>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Aslak Helles\xC3\xB8y"
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-10-03 00:00:00 +02:00
17
+ date: 2010-10-05 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -125,6 +125,8 @@ files:
125
125
  - lib/cuke4duke/step_mother_ext.rb
126
126
  - lib/cuke4duke/table_ext.rb
127
127
  - lib/cuke4duke/version.rb
128
+ - lib/cuke4duke-0.4.2.jar
129
+ - pom.xml
128
130
  - LICENCE
129
131
  - README.textile
130
132
  has_rdoc: true
@@ -156,6 +158,6 @@ rubyforge_project:
156
158
  rubygems_version: 1.3.6
157
159
  signing_key:
158
160
  specification_version: 3
159
- summary: cuke4duke-0.4.1
161
+ summary: cuke4duke-0.4.2
160
162
  test_files: []
161
163