Skip to content

Commit 85ff256

Browse files
author
Mayer Dmitriy Yakovlevich
committed
cleaned up pom.xml
added deployment block
1 parent 3638398 commit 85ff256

File tree

1 file changed

+17
-111
lines changed

1 file changed

+17
-111
lines changed

pom.xml

Lines changed: 17 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.fxclub.qa</groupId>
88
<artifactId>cucumber-jvm-console-formatter</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0-BETA2</version>
1010

1111
<properties>
1212
<project.jdk.version>1.8</project.jdk.version>
@@ -18,6 +18,14 @@
1818
</properties>
1919

2020
<repositories>
21+
<repository>
22+
<snapshots>
23+
<enabled>true</enabled>
24+
</snapshots>
25+
<id>bintray-letsrokk-github</id>
26+
<name>bintray</name>
27+
<url>http://dl.bintray.com/letsrokk/github</url>
28+
</repository>
2129
<repository>
2230
<id>jitpack.io</id>
2331
<url>https://jitpack.io</url>
@@ -79,21 +87,6 @@
7987
<version>1.7.25</version>
8088
<scope>test</scope>
8189
</dependency>
82-
83-
<!-- https://mvnrepository.com/artifact/com.github.temyers/cucumber-jvm-parallel-plugin -->
84-
<!--<dependency>-->
85-
<!--<groupId>com.github.temyers</groupId>-->
86-
<!--<artifactId>cucumber-jvm-parallel-plugin</artifactId>-->
87-
<!--<version>${cucumber.jvm.parallel.version}</version>-->
88-
<!--</dependency>-->
89-
90-
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
91-
<!--<dependency>-->
92-
<!--<groupId>org.slf4j</groupId>-->
93-
<!--<artifactId>slf4j-log4j12</artifactId>-->
94-
<!--<version>1.7.24</version>-->
95-
<!--</dependency>-->
96-
9790
</dependencies>
9891

9992
<build>
@@ -163,102 +156,15 @@
163156
<printSummary>false</printSummary>
164157
</configuration>
165158
</plugin>
166-
<!--<plugin>-->
167-
<!--<groupId>com.github.temyers</groupId>-->
168-
<!--<artifactId>cucumber-jvm-parallel-plugin</artifactId>-->
169-
<!--<version>${cucumber.jvm.parallel.version}</version>-->
170-
<!--<executions>-->
171-
<!--<execution>-->
172-
<!--<id>generateRunners</id>-->
173-
<!--<phase>generate-test-sources</phase>-->
174-
<!--<goals>-->
175-
<!--<goal>generateRunners</goal>-->
176-
<!--</goals>-->
177-
<!--<configuration>-->
178-
<!--&lt;!&ndash; Mandatory &ndash;&gt;-->
179-
<!--&lt;!&ndash; List of package names to scan for glue code. &ndash;&gt;-->
180-
<!--<glue>-->
181-
<!--<package>org.fclub.qa.cucumber.examples.steps</package>-->
182-
<!--</glue>-->
183-
<!-- These are optional, with the default values -->
184-
<!-- Where to output the generated tests -->
185-
<!--<outputDirectory>${project.build.directory}/generated-test-sources/cucumber</outputDirectory>-->
186-
<!--&lt;!&ndash; The directory, which must be in the root of the runtime classpath, containing your feature files. &ndash;&gt;-->
187-
<!--<featuresDirectory>src/test/resources/features/</featuresDirectory>-->
188-
<!--&lt;!&ndash; Directory where the cucumber report files shall be written &ndash;&gt;-->
189-
<!--<cucumberOutputDir>target/cucumber-parallel</cucumberOutputDir>-->
190-
<!--&lt;!&ndash; List of cucumber plugins. When none are provided the json formatter is used. For more-->
191-
<!--advanced usage see section about configuring cucumber plugins &ndash;&gt;-->
192-
<!--<plugins>-->
193-
<!--<plugin>-->
194-
<!--<name>null_summary</name>-->
195-
<!--</plugin>-->
196-
<!--<plugin>-->
197-
<!--<name>json</name>-->
198-
<!--</plugin>-->
199-
<!--<plugin>-->
200-
<!--<name>org.fxclub.qa.cucumber.ConsoleFormatter</name>-->
201-
<!--<noOutput>true</noOutput>-->
202-
<!--</plugin>-->
203-
<!--<plugin>-->
204-
<!--<name>io.qameta.allure.cucumberjvm.AllureCucumberJvm</name>-->
205-
<!--</plugin>-->
206-
<!--&lt;!&ndash;<plugin>&ndash;&gt;-->
207-
<!--&lt;!&ndash;<name>org.fxclub.qa.cucumber.ZAPICucumberHook</name>&ndash;&gt;-->
208-
<!--&lt;!&ndash;</plugin>&ndash;&gt;-->
209-
<!--</plugins>-->
210-
<!--&lt;!&ndash; CucumberOptions.strict property &ndash;&gt;-->
211-
<!--<strict>true</strict>-->
212-
<!--&lt;!&ndash; CucumberOptions.monochrome property &ndash;&gt;-->
213-
<!--<monochrome>false</monochrome>-->
214-
<!--&lt;!&ndash; The tags to run, maps to CucumberOptions.tags property. Default is no tags. &ndash;&gt;-->
215-
<!--&lt;!&ndash;<tags>&ndash;&gt;-->
216-
<!--&lt;!&ndash;<tag>@tagName</tag>&ndash;&gt;-->
217-
<!--&lt;!&ndash;</tags>&ndash;&gt;-->
218-
<!--&lt;!&ndash; Generate TestNG runners instead of JUnit ones. &ndash;&gt;-->
219-
<!--<useTestNG>true</useTestNG>-->
220-
<!--&lt;!&ndash; The naming scheme to use for the generated test classes. One of 'simple' or 'feature-title' &ndash;&gt;-->
221-
<!--<namingScheme>pattern</namingScheme>-->
222-
<!--&lt;!&ndash; The class naming pattern to use. Only required/used if naming scheme is 'pattern'.&ndash;&gt;-->
223-
<!--<namingPattern>{f}{c}Test</namingPattern>-->
224-
<!--&lt;!&ndash; One of [SCENARIO, FEATURE]. SCENARIO generates one runner per scenario. FEATURE generates a runner per feature. &ndash;&gt;-->
225-
<!--<parallelScheme>SCENARIO</parallelScheme>-->
226-
<!--&lt;!&ndash; Specify a custom template for the generated sources (this is a path relative to the project base directory) &ndash;&gt;-->
227-
<!--&lt;!&ndash;<customVmTemplate>src/test/resources/cucumber-custom-runner.vm</customVmTemplate>&ndash;&gt;-->
228-
<!--&lt;!&ndash; Specify a custom package name for generated sources. Default is no package.&ndash;&gt;-->
229-
<!--&lt;!&ndash;<packageName>com.example</packageName>&ndash;&gt;-->
230-
<!--</configuration>-->
231-
<!--</execution>-->
232-
<!--</executions>-->
233-
<!--</plugin>-->
234-
<!--<plugin>-->
235-
<!--<groupId>org.apache.maven.plugins</groupId>-->
236-
<!--<artifactId>maven-surefire-plugin</artifactId>-->
237-
<!--<version>${maven.surefire.version}</version>-->
238-
<!--<configuration>-->
239-
<!--<parallel>classes</parallel>-->
240-
<!--<useUnlimitedThreads>true</useUnlimitedThreads>-->
241-
<!--<forkCount>${failsafe.fork.count}</forkCount>-->
242-
<!--<reuseForks>true</reuseForks>-->
243-
<!--<testFailureIgnore>true</testFailureIgnore>-->
244-
<!--<printSummary>false</printSummary>-->
245-
<!--<argLine>-->
246-
<!-- -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar-->
247-
<!--</argLine>-->
248-
<!--<systemPropertyVariables>-->
249-
<!--<allure.results.directory>${project.build.directory}/allure-results</allure.results.directory>-->
250-
<!--</systemPropertyVariables>-->
251-
<!--</configuration>-->
252-
<!--<dependencies>-->
253-
<!--&lt;!&ndash; http://mvnrepository.com/artifact/org.aspectj/aspectjweaver &ndash;&gt;-->
254-
<!--<dependency>-->
255-
<!--<groupId>org.aspectj</groupId>-->
256-
<!--<artifactId>aspectjweaver</artifactId>-->
257-
<!--<version>${aspectj.version}</version>-->
258-
<!--</dependency>-->
259-
<!--</dependencies>-->
260-
<!--</plugin>-->
261159
</plugins>
262160
</build>
263161

162+
<distributionManagement>
163+
<repository>
164+
<id>bintray-letsrokk-github</id>
165+
<name>letsrokk-github</name>
166+
<url>https://api.bintray.com/maven/letsrokk/github/cucumber-jvm-console-formatter/;publish=1</url>
167+
</repository>
168+
</distributionManagement>
169+
264170
</project>

0 commit comments

Comments
 (0)