Skip to content

Commit b9a9f60

Browse files
committed
Corrections in pom for release
1 parent 49fb9eb commit b9a9f60

File tree

1 file changed

+145
-137
lines changed

1 file changed

+145
-137
lines changed

pom.xml

Lines changed: 145 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,159 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
65

7-
<groupId>com.browserstack</groupId>
8-
<artifactId>automate-client-java</artifactId>
9-
<name>automate-client</name>
10-
<version>0.3-SNAPSHOT</version>
11-
<packaging>jar</packaging>
6+
<groupId>com.browserstack</groupId>
7+
<artifactId>automate-client-java</artifactId>
8+
<name>automate-client</name>
9+
<version>0.3</version>
10+
<packaging>jar</packaging>
11+
<description>Java bindings for BrowserStack Automate REST API</description>
12+
<url>https://www.browserstack.com</url>
1213

13-
<licenses>
14-
<license>
15-
<name>MIT</name>
16-
<url>https://opensource.org/licenses/MIT</url>
17-
</license>
18-
</licenses>
14+
<licenses>
15+
<license>
16+
<name>MIT</name>
17+
<url>https://opensource.org/licenses/MIT</url>
18+
</license>
19+
</licenses>
1920

20-
<developers>
21-
<developer>
22-
<name>BrowserStack</name>
23-
<email>[email protected]</email>
24-
<organization>BrowserStack</organization>
25-
<organizationUrl>https://www.browserstack.com</organizationUrl>
26-
</developer>
27-
</developers>
21+
<developers>
22+
<developer>
23+
<name>BrowserStack</name>
24+
<email>[email protected]</email>
25+
<organization>BrowserStack</organization>
26+
<organizationUrl>https://www.browserstack.com</organizationUrl>
27+
</developer>
28+
</developers>
2829

29-
<distributionManagement>
30-
<snapshotRepository>
31-
<id>ossrh</id>
32-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
33-
</snapshotRepository>
34-
</distributionManagement>
30+
<distributionManagement>
31+
<snapshotRepository>
32+
<id>ossrh</id>
33+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
34+
</snapshotRepository>
35+
</distributionManagement>
3536

36-
<properties>
37-
<jackson.version>2.1.0</jackson.version>
38-
<junit.version>4.12</junit.version>
39-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40-
<maven.compiler.source>1.5</maven.compiler.source>
41-
<maven.compiler.target>1.5</maven.compiler.target>
42-
</properties>
37+
<properties>
38+
<jackson.version>2.1.0</jackson.version>
39+
<junit.version>4.12</junit.version>
40+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41+
<maven.compiler.source>1.5</maven.compiler.source>
42+
<maven.compiler.target>1.5</maven.compiler.target>
43+
</properties>
4344

44-
<build>
45-
<plugins>
46-
<plugin>
47-
<groupId>org.apache.maven.plugins</groupId>
48-
<artifactId>maven-compiler-plugin</artifactId>
49-
<version>3.5.1</version>
50-
<configuration>
51-
<source>1.5</source>
52-
<target>1.5</target>
53-
</configuration>
54-
</plugin>
55-
<plugin>
56-
<groupId>org.apache.maven.plugins</groupId>
57-
<artifactId>maven-source-plugin</artifactId>
58-
<version>2.2.1</version>
59-
<executions>
60-
<execution>
61-
<id>attach-sources</id>
62-
<goals>
63-
<goal>jar-no-fork</goal>
64-
</goals>
65-
</execution>
66-
</executions>
67-
</plugin>
68-
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
70-
<artifactId>maven-javadoc-plugin</artifactId>
71-
<version>2.10.3</version>
72-
<configuration>
73-
<additionalparam>-Xdoclint:none</additionalparam>
74-
</configuration>
75-
<executions>
76-
<execution>
77-
<id>attach-javadocs</id>
78-
<goals>
79-
<goal>jar</goal>
80-
</goals>
81-
</execution>
82-
</executions>
83-
</plugin>
84-
<plugin>
85-
<groupId>org.sonatype.plugins</groupId>
86-
<artifactId>nexus-staging-maven-plugin</artifactId>
87-
<version>1.6.7</version>
88-
<extensions>true</extensions>
89-
<configuration>
90-
<serverId>ossrh</serverId>
91-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
92-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
93-
</configuration>
94-
</plugin>
95-
<plugin>
96-
<groupId>org.apache.maven.plugins</groupId>
97-
<artifactId>maven-gpg-plugin</artifactId>
98-
<version>1.6</version>
99-
<executions>
100-
<execution>
101-
<id>sign-artifacts</id>
102-
<phase>verify</phase>
103-
<goals>
104-
<goal>sign</goal>
105-
</goals>
106-
</execution>
107-
</executions>
108-
</plugin>
109-
</plugins>
110-
</build>
45+
<build>
46+
<plugins>
47+
<plugin>
48+
<groupId>org.apache.maven.plugins</groupId>
49+
<artifactId>maven-compiler-plugin</artifactId>
50+
<version>3.5.1</version>
51+
<configuration>
52+
<source>1.5</source>
53+
<target>1.5</target>
54+
</configuration>
55+
</plugin>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-source-plugin</artifactId>
59+
<version>2.2.1</version>
60+
<executions>
61+
<execution>
62+
<id>attach-sources</id>
63+
<goals>
64+
<goal>jar-no-fork</goal>
65+
</goals>
66+
</execution>
67+
</executions>
68+
</plugin>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-javadoc-plugin</artifactId>
72+
<version>2.10.3</version>
73+
<configuration>
74+
<additionalparam>-Xdoclint:none</additionalparam>
75+
</configuration>
76+
<executions>
77+
<execution>
78+
<id>attach-javadocs</id>
79+
<goals>
80+
<goal>jar</goal>
81+
</goals>
82+
</execution>
83+
</executions>
84+
</plugin>
85+
<plugin>
86+
<groupId>org.sonatype.plugins</groupId>
87+
<artifactId>nexus-staging-maven-plugin</artifactId>
88+
<version>1.6.7</version>
89+
<extensions>true</extensions>
90+
<configuration>
91+
<serverId>ossrh</serverId>
92+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
93+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
94+
</configuration>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-gpg-plugin</artifactId>
99+
<version>1.6</version>
100+
<executions>
101+
<execution>
102+
<id>sign-artifacts</id>
103+
<phase>verify</phase>
104+
<goals>
105+
<goal>sign</goal>
106+
</goals>
107+
</execution>
108+
</executions>
109+
</plugin>
110+
</plugins>
111+
</build>
111112

112-
<dependencies>
113-
<dependency>
114-
<groupId>com.google.http-client</groupId>
115-
<artifactId>google-http-client</artifactId>
116-
<version>1.21.0</version>
117-
<exclusions>
118-
<exclusion>
119-
<groupId>org.apache.httpcomponents</groupId>
120-
<artifactId>httpclient</artifactId>
121-
</exclusion>
122-
</exclusions>
123-
</dependency>
113+
<dependencies>
114+
<dependency>
115+
<groupId>com.google.http-client</groupId>
116+
<artifactId>google-http-client</artifactId>
117+
<version>1.21.0</version>
118+
<exclusions>
119+
<exclusion>
120+
<groupId>org.apache.httpcomponents</groupId>
121+
<artifactId>httpclient</artifactId>
122+
</exclusion>
123+
</exclusions>
124+
</dependency>
124125

125-
<dependency>
126-
<groupId>org.json</groupId>
127-
<artifactId>json</artifactId>
128-
<version>20160212</version>
129-
</dependency>
126+
<dependency>
127+
<groupId>org.json</groupId>
128+
<artifactId>json</artifactId>
129+
<version>20160212</version>
130+
</dependency>
130131

131-
<dependency>
132-
<groupId>com.fasterxml.jackson.core</groupId>
133-
<artifactId>jackson-core</artifactId>
134-
<version>${jackson.version}</version>
135-
</dependency>
132+
<dependency>
133+
<groupId>com.fasterxml.jackson.core</groupId>
134+
<artifactId>jackson-core</artifactId>
135+
<version>${jackson.version}</version>
136+
</dependency>
136137

137-
<dependency>
138-
<groupId>com.fasterxml.jackson.core</groupId>
139-
<artifactId>jackson-databind</artifactId>
140-
<version>${jackson.version}</version>
141-
</dependency>
138+
<dependency>
139+
<groupId>com.fasterxml.jackson.core</groupId>
140+
<artifactId>jackson-databind</artifactId>
141+
<version>${jackson.version}</version>
142+
</dependency>
142143

143-
<dependency>
144-
<groupId>junit</groupId>
145-
<artifactId>junit</artifactId>
146-
<version>${junit.version}</version>
147-
<scope>test</scope>
148-
</dependency>
149-
</dependencies>
144+
<dependency>
145+
<groupId>junit</groupId>
146+
<artifactId>junit</artifactId>
147+
<version>${junit.version}</version>
148+
<scope>test</scope>
149+
</dependency>
150+
</dependencies>
151+
152+
<scm>
153+
<url>https://github.com/browserstack/automate-client-java</url>
154+
<connection>scm:git:https://github.com/browserstack/automate-client-java.git</connection>
155+
<developerConnection>scm:git:[email protected]:browserstack/automate-client-java.git</developerConnection>
156+
<tag>HEAD</tag>
157+
</scm>
150158

151159
</project>

0 commit comments

Comments
 (0)