Skip to content

Commit 00b24bc

Browse files
d.bogatkod.bogatko
authored andcommitted
updated pom file with correct group id and license information
1 parent 525c063 commit 00b24bc

File tree

1 file changed

+42
-2
lines changed

1 file changed

+42
-2
lines changed

pom.xml

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,41 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>aquality.automation</groupId>
7+
<groupId>com.github.aquality-automation</groupId>
88
<artifactId>aquality-selenium</artifactId>
9-
<version>0.0.1-SNAPSHOT</version>
9+
<version>1.0-SNAPSHOT</version>
10+
<packaging>jar</packaging>
1011

1112
<properties>
1213
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1314
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1415
</properties>
1516

17+
<distributionManagement>
18+
<snapshotRepository>
19+
<id>ossrh</id>
20+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
21+
</snapshotRepository>
22+
<repository>
23+
<id>ossrh</id>
24+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
25+
</repository>
26+
</distributionManagement>
27+
28+
<scm>
29+
<connection>scm:git:git@github.com:aquality-automation/aquality-selenium-java.git</connection>
30+
<developerConnection>scm:git:git@github.com:aquality-automation/aquality-selenium-java.git</developerConnection>
31+
<url>https://github.com/aquality-automation/aquality-selenium-java</url>
32+
</scm>
33+
34+
<licenses>
35+
<license>
36+
<name>The Apache Software License, Version 2.0</name>
37+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38+
<distribution>repo</distribution>
39+
</license>
40+
</licenses>
41+
1642
<dependencies>
1743
<dependency>
1844
<groupId>org.seleniumhq.selenium</groupId>
@@ -159,6 +185,20 @@
159185
</execution>
160186
</executions>
161187
</plugin>
188+
<plugin>
189+
<groupId>org.apache.maven.plugins</groupId>
190+
<artifactId>maven-gpg-plugin</artifactId>
191+
<version>1.6</version>
192+
<executions>
193+
<execution>
194+
<id>sign-artifacts</id>
195+
<phase>verify</phase>
196+
<goals>
197+
<goal>sign</goal>
198+
</goals>
199+
</execution>
200+
</executions>
201+
</plugin>
162202
</plugins>
163203
</build>
164204
</profile>

0 commit comments

Comments
 (0)