Skip to content

Commit 162ed87

Browse files
committed
pushing initial tag
1 parent 5cd4c9a commit 162ed87

File tree

7 files changed

+102
-8
lines changed

7 files changed

+102
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# IntelliJ Files
22
.idea
3+

pom.xml

Lines changed: 97 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<packaging>maven-plugin</packaging>
77
<version>0.0.1</version>
88
<name>cucumber-parallel-xbrowser-testing</name>
9-
<url>http://maven.apache.org</url>
9+
<url>https://github.com/rsshekhawat/cucumber-parallel-xbrowser-testing</url>
1010

1111
<properties>
1212
<maven.compiler.source>1.8</maven.compiler.source>
@@ -47,6 +47,7 @@
4747
</dependencies>
4848

4949
<build>
50+
<pluginManagement>
5051
<plugins>
5152
<plugin>
5253
<groupId>org.apache.maven.plugins</groupId>
@@ -67,7 +68,70 @@
6768
<target>1.8</target>
6869
</configuration>
6970
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-source-plugin</artifactId>
74+
<version>3.2.0</version>
75+
<executions>
76+
<execution>
77+
<id>attach-sources</id>
78+
<goals>
79+
<goal>jar-no-fork</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>3.3.1</version>
88+
<executions>
89+
<execution>
90+
<id>attach-javadocs</id>
91+
<goals>
92+
<goal>jar</goal>
93+
</goals>
94+
</execution>
95+
</executions>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-gpg-plugin</artifactId>
100+
<version>3.0.1</version>
101+
<executions>
102+
<execution>
103+
<id>sign-artifacts</id>
104+
<phase>verify</phase>
105+
<goals>
106+
<goal>sign</goal>
107+
</goals>
108+
<configuration>
109+
<keyname>${gpg.keyname}</keyname>
110+
<passphraseServerId>${gpg.passphrase}</passphraseServerId>
111+
</configuration>
112+
</execution>
113+
</executions>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.sonatype.plugins</groupId>
117+
<artifactId>nexus-staging-maven-plugin</artifactId>
118+
<version>1.6.7</version>
119+
<extensions>true</extensions>
120+
<configuration>
121+
<serverId>ossrh</serverId>
122+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
123+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
124+
</configuration>
125+
<dependencies>
126+
<dependency>
127+
<groupId>com.thoughtworks.xstream</groupId>
128+
<artifactId>xstream</artifactId>
129+
<version>1.4.15</version> <!-- apparently this needs to be exactly this version -->
130+
</dependency>
131+
</dependencies>
132+
</plugin>
70133
</plugins>
134+
</pluginManagement>
71135
</build>
72136

73137
<reporting>
@@ -88,11 +152,40 @@
88152
</reporting>
89153

90154
<distributionManagement>
155+
<snapshotRepository>
156+
<id>ossrh</id>
157+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
158+
</snapshotRepository>
91159
<repository>
92-
<id>github</id>
93-
<name>Apache Maven Packages</name>
94-
<url>https://maven.pkg.github.com/rsshekhawat/custom-maven-plugin</url>
160+
<id>ossrh</id>
161+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
95162
</repository>
96163
</distributionManagement>
97164

165+
<description>xbrowser parallel testing</description>
166+
167+
<licenses>
168+
<license>
169+
<name>MIT License</name>
170+
<url>https://github.com/rsshekhawat/cucumber-parallel-xbrowser-testing/blob/master/README.md</url>
171+
</license>
172+
</licenses>
173+
174+
<developers>
175+
<developer>
176+
<name>Rahul Shekhawat</name>
177+
<email>[email protected]</email>
178+
<roles>
179+
<role>developer</role>
180+
</roles>
181+
</developer>
182+
</developers>
183+
184+
<scm>
185+
<connection>scm:git:git://github.com/rsshekhawat/cucumber-parallel-xbrowser-testing.git</connection>
186+
<developerConnection>scm:git:[email protected]/rsshekhawat/cucumber-parallel-xbrowser-testing.git</developerConnection>
187+
<url>https://github.com/rsshekhawat/cucumber-parallel-xbrowser-testing</url>
188+
<tag>HEAD</tag>
189+
</scm>
190+
98191
</project>

target/classes/META-INF/maven/io.github.rsshekhawat/cucumber-parallel-xbrowser-testing/plugin-help.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<plugin>
66
<name>cucumber-parallel-xbrowser-testing</name>
7-
<description></description>
7+
<description>xbrowser parallel testing</description>
88
<groupId>io.github.rsshekhawat</groupId>
99
<artifactId>cucumber-parallel-xbrowser-testing</artifactId>
1010
<version>0.0.1</version>

target/classes/META-INF/maven/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<plugin>
66
<name>cucumber-parallel-xbrowser-testing</name>
7-
<description></description>
7+
<description>xbrowser parallel testing</description>
88
<groupId>io.github.rsshekhawat</groupId>
99
<artifactId>cucumber-parallel-xbrowser-testing</artifactId>
1010
<version>0.0.1</version>
29 Bytes
Binary file not shown.
580 Bytes
Binary file not shown.

target/maven-archiver/pom.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Generated by Maven
2-
#Sun Feb 06 21:58:00 IST 2022
2+
#Mon Feb 07 22:16:53 IST 2022
3+
version=0.0.1
34
groupId=io.github.rsshekhawat
45
artifactId=cucumber-parallel-xbrowser-testing
5-
version=0.0.1

0 commit comments

Comments
 (0)