2020 <annotation .version>1.3.2</annotation .version>
2121 <surefire .version>3.0.0-M5</surefire .version>
2222 <jacoco .version>0.8.8</jacoco .version>
23+ <mavenshadeplugin .version>3.2.1</mavenshadeplugin .version>
24+ <nexusstagingplugin .version>1.6.13</nexusstagingplugin .version>
25+ <gpgplugin .version>3.0.1</gpgplugin .version>
26+ <javadocplugin .version>3.4.1</javadocplugin .version>
27+ <mavensourceplugin .version>3.2.1</mavensourceplugin .version>
2328 </properties >
2429
30+ <name >Java a11y Playwright</name >
31+ <description >Accessibility Automation for Web Apps with Java and Playwright</description >
32+ <url >https://github.com/automated-a11y/java-a11y-playwright</url >
33+
34+ <licenses >
35+ <license >
36+ <name >MIT License</name >
37+ <url >http://www.opensource.org/licenses/mit-license.php</url >
38+ </license >
39+ </licenses >
40+
41+ <developers >
42+ <developer >
43+ <name >Sridhar Bandi</name >
44+ <email >sridhar.bandi.ece@gmail.com</email >
45+ <organization >io.github.sridharbandi</organization >
46+ <organizationUrl >https://github.com/sridharbandi</organizationUrl >
47+ </developer >
48+ </developers >
49+
50+ <scm >
51+ <connection >scm:git:git://github.com/automated-a11y/java-a11y-playwright.git</connection >
52+ <developerConnection >scm:git:ssh://github.com:automated-a11y/java-a11y-playwright.git</developerConnection >
53+ <url >http://github.com/automated-a11y/java-a11y-playwright/tree/main</url >
54+ </scm >
55+
2556 <dependencies >
2657 <dependency >
2758 <groupId >com.microsoft.playwright</groupId >
6293 </dependencies >
6394 <build >
6495 <plugins >
96+ <plugin >
97+ <groupId >org.sonatype.plugins</groupId >
98+ <artifactId >nexus-staging-maven-plugin</artifactId >
99+ <version >${nexusstagingplugin.version} </version >
100+ <extensions >true</extensions >
101+ <configuration >
102+ <serverId >ossrh</serverId >
103+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
104+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
105+ </configuration >
106+ </plugin >
107+ <plugin >
108+ <groupId >org.apache.maven.plugins</groupId >
109+ <artifactId >maven-source-plugin</artifactId >
110+ <version >${mavensourceplugin.version} </version >
111+ <executions >
112+ <execution >
113+ <id >attach-sources</id >
114+ <goals >
115+ <goal >jar-no-fork</goal >
116+ </goals >
117+ </execution >
118+ </executions >
119+ </plugin >
120+ <plugin >
121+ <groupId >org.apache.maven.plugins</groupId >
122+ <artifactId >maven-javadoc-plugin</artifactId >
123+ <version >${javadocplugin.version} </version >
124+ <executions >
125+ <execution >
126+ <id >attach-javadocs</id >
127+ <goals >
128+ <goal >jar</goal >
129+ </goals >
130+ </execution >
131+ </executions >
132+ </plugin >
133+ <plugin >
134+ <groupId >org.apache.maven.plugins</groupId >
135+ <artifactId >maven-gpg-plugin</artifactId >
136+ <version >${gpgplugin.version} </version >
137+ <executions >
138+ <execution >
139+ <id >sign-artifacts</id >
140+ <phase >verify</phase >
141+ <goals >
142+ <goal >sign</goal >
143+ </goals >
144+ <configuration >
145+ <gpgArguments >
146+ <arg >--pinentry-mode</arg >
147+ <arg >loopback</arg >
148+ </gpgArguments >
149+ </configuration >
150+ </execution >
151+ </executions >
152+ </plugin >
153+ <plugin >
154+ <groupId >org.apache.maven.plugins</groupId >
155+ <artifactId >maven-shade-plugin</artifactId >
156+ <version >${mavenshadeplugin.version} </version >
157+ <executions >
158+ <execution >
159+ <phase >package</phase >
160+ <goals >
161+ <goal >shade</goal >
162+ </goals >
163+ </execution >
164+ </executions >
165+ </plugin >
65166 <plugin >
66167 <groupId >org.apache.maven.plugins</groupId >
67168 <artifactId >maven-surefire-plugin</artifactId >
98199 </plugins >
99200 </build >
100201
202+ <distributionManagement >
203+ <snapshotRepository >
204+ <id >ossrh</id >
205+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
206+ </snapshotRepository >
207+ <repository >
208+ <id >ossrh</id >
209+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
210+ </repository >
211+ </distributionManagement >
101212</project >
0 commit comments