|
4 | 4 | <groupId>com.browserstack</groupId>
|
5 | 5 | <artifactId>browserstack-local-java</artifactId>
|
6 | 6 | <packaging>jar</packaging>
|
7 |
| - <version>1.0-SNAPSHOT</version> |
| 7 | + <version>0.1.0</version> |
| 8 | + |
8 | 9 | <name>browserstack-local-java</name>
|
9 |
| - <url>http://maven.apache.org</url> |
| 10 | + <description>Java bindings for BrowserStack Local</description> |
| 11 | + <url>https://www.browserstack.com</url> |
| 12 | + |
| 13 | + <licenses> |
| 14 | + <license> |
| 15 | + <name>MIT</name> |
| 16 | + <url>https://opensource.org/licenses/MIT</url> |
| 17 | + </license> |
| 18 | + </licenses> |
| 19 | + |
| 20 | + <developers> |
| 21 | + <developer> |
| 22 | + <name>BrowserStack</name> |
| 23 | + |
| 24 | + <organization>BrowserStack</organization> |
| 25 | + <organizationUrl>https://www.browserstack.com</organizationUrl> |
| 26 | + </developer> |
| 27 | + </developers> |
| 28 | + |
| 29 | + <scm> |
| 30 | + < connection>scm:git: [email protected]:browserstack/browserstack-local-java.git</ connection> |
| 31 | + < developerConnection>scm:git: [email protected]:browserstack/browserstack-local-java.git</ developerConnection> |
| 32 | + < url> [email protected]:browserstack/browserstack-local-java.git</ url> |
| 33 | + </scm> |
| 34 | + |
| 35 | + <distributionManagement> |
| 36 | + <snapshotRepository> |
| 37 | + <id>ossrh</id> |
| 38 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 39 | + </snapshotRepository> |
| 40 | + </distributionManagement> |
| 41 | + |
10 | 42 | <dependencies>
|
11 | 43 | <dependency>
|
12 | 44 | <groupId>junit</groupId>
|
|
20 | 52 | <version>1.3.2</version>
|
21 | 53 | </dependency>
|
22 | 54 | </dependencies>
|
| 55 | + |
| 56 | + <profiles> |
| 57 | + <profile> |
| 58 | + <id>release-sign-artifacts</id> |
| 59 | + <activation> |
| 60 | + <property> |
| 61 | + <name>performRelease</name> |
| 62 | + <value>true</value> |
| 63 | + </property> |
| 64 | + </activation> |
| 65 | + <build> |
| 66 | + <plugins> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-gpg-plugin</artifactId> |
| 70 | + <executions> |
| 71 | + <execution> |
| 72 | + <id>sign-artifacts</id> |
| 73 | + <phase>verify</phase> |
| 74 | + <goals> |
| 75 | + <goal>sign</goal> |
| 76 | + </goals> |
| 77 | + </execution> |
| 78 | + </executions> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.sonatype.plugins</groupId> |
| 82 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 83 | + <version>1.6.3</version> |
| 84 | + <extensions>true</extensions> |
| 85 | + <configuration> |
| 86 | + <serverId>ossrh</serverId> |
| 87 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 88 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 89 | + </configuration> |
| 90 | + </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-source-plugin</artifactId> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <id>attach-sources</id> |
| 97 | + <goals> |
| 98 | + <goal>jar</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 106 | + <executions> |
| 107 | + <execution> |
| 108 | + <id>attach-javadocs</id> |
| 109 | + <goals> |
| 110 | + <goal>jar</goal> |
| 111 | + </goals> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + <configuration> |
| 115 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 116 | + </configuration> |
| 117 | + </plugin> |
| 118 | + </plugins> |
| 119 | + </build> |
| 120 | + </profile> |
| 121 | + </profiles> |
| 122 | + |
23 | 123 | <build>
|
24 | 124 | <plugins>
|
| 125 | + <plugin> |
| 126 | + <groupId>org.sonatype.plugins</groupId> |
| 127 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 128 | + <version>1.6.3</version> |
| 129 | + <extensions>true</extensions> |
| 130 | + <configuration> |
| 131 | + <serverId>ossrh</serverId> |
| 132 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 133 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 134 | + </configuration> |
| 135 | + </plugin> |
25 | 136 | <plugin>
|
26 | 137 | <groupId>org.apache.maven.plugins</groupId>
|
27 | 138 | <artifactId>maven-compiler-plugin</artifactId>
|
|
0 commit comments