|
6 | 6 | <packaging>maven-plugin</packaging>
|
7 | 7 | <version>0.0.1</version>
|
8 | 8 | <name>cucumber-parallel-xbrowser-testing</name>
|
9 |
| - <url>http://maven.apache.org</url> |
| 9 | + <url>https://github.com/rsshekhawat/cucumber-parallel-xbrowser-testing</url> |
10 | 10 |
|
11 | 11 | <properties>
|
12 | 12 | <maven.compiler.source>1.8</maven.compiler.source>
|
|
47 | 47 | </dependencies>
|
48 | 48 |
|
49 | 49 | <build>
|
| 50 | + <pluginManagement> |
50 | 51 | <plugins>
|
51 | 52 | <plugin>
|
52 | 53 | <groupId>org.apache.maven.plugins</groupId>
|
|
67 | 68 | <target>1.8</target>
|
68 | 69 | </configuration>
|
69 | 70 | </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> |
70 | 133 | </plugins>
|
| 134 | + </pluginManagement> |
71 | 135 | </build>
|
72 | 136 |
|
73 | 137 | <reporting>
|
|
88 | 152 | </reporting>
|
89 | 153 |
|
90 | 154 | <distributionManagement>
|
| 155 | + <snapshotRepository> |
| 156 | + <id>ossrh</id> |
| 157 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 158 | + </snapshotRepository> |
91 | 159 | <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> |
95 | 162 | </repository>
|
96 | 163 | </distributionManagement>
|
97 | 164 |
|
| 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 | + |
| 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 | + |
98 | 191 | </project>
|
0 commit comments