|
6 | 6 |
|
7 | 7 | <groupId>com.phonepe</groupId> |
8 | 8 | <artifactId>pg-sdk-java</artifactId> |
9 | | - <version>2.1.7</version> |
| 9 | + <version>2.1.8</version> |
10 | 10 | <name>B2B JAVA SDK</name> |
11 | 11 | <url>https://github.com/PhonePe/phonepe-pg-sdk-java</url> |
12 | 12 | <description>Phonepe PG JAVA SDK</description> |
|
97 | 97 | <name>Aditi Billore</name> |
98 | 98 | <email>aditi.billore3@gmail.com</email> |
99 | 99 | </developer> |
| 100 | + <developer> |
| 101 | + <id>Yogesh-Kamble</id> |
| 102 | + <name>Yogesh Kamble</name> |
| 103 | + <email>ypk282000@gmail.com</email> |
| 104 | + </developer> |
100 | 105 | </developers> |
101 | 106 |
|
102 | 107 | <properties> |
|
133 | 138 | </properties> |
134 | 139 |
|
135 | 140 | <build> |
| 141 | + <resources> |
| 142 | + <resource> |
| 143 | + <directory>src/main/resources</directory> |
| 144 | + <filtering>true</filtering> |
| 145 | + </resource> |
| 146 | + </resources> |
136 | 147 | <plugins> |
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-source-plugin</artifactId> |
| 151 | + <version>3.2.1</version> |
| 152 | + <executions> |
| 153 | + <execution> |
| 154 | + <id>attach-sources</id> |
| 155 | + <goals> |
| 156 | + <goal>jar-no-fork</goal> |
| 157 | + </goals> |
| 158 | + </execution> |
| 159 | + </executions> |
| 160 | + </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 164 | + <version>3.4.0</version> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <id>attach-javadocs</id> |
| 168 | + <goals> |
| 169 | + <goal>jar</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + </plugin> |
137 | 174 | <plugin> |
138 | 175 | <groupId>com.diffplug.spotless</groupId> |
139 | 176 | <artifactId>spotless-maven-plugin</artifactId> |
140 | 177 | <version>${spotless.version}</version> |
141 | 178 | <configuration> |
142 | 179 | <ratchetFrom>origin/main</ratchetFrom> |
143 | 180 | <java> |
| 181 | + <!-- Eclipse formatter with custom rules --> |
| 182 | + <eclipse> |
| 183 | + <file>${project.basedir}/formatter.xml</file> |
| 184 | + <version>4.26</version> |
| 185 | + </eclipse> |
144 | 186 | <includes> |
145 | 187 | <include>src/main/java/**/*.java</include> |
146 | 188 | <include>src/test/java/**/*.java</include> |
|
170 | 212 | </execution> |
171 | 213 | </executions> |
172 | 214 | </plugin> |
| 215 | + <plugin> |
| 216 | + <groupId>org.jacoco</groupId> |
| 217 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 218 | + <version>0.8.11</version> |
| 219 | + <executions> |
| 220 | + <execution> |
| 221 | + <goals> |
| 222 | + <goal>prepare-agent</goal> |
| 223 | + </goals> |
| 224 | + </execution> |
| 225 | + <execution> |
| 226 | + <id>report</id> |
| 227 | + <phase>test</phase> |
| 228 | + <goals> |
| 229 | + <goal>report</goal> |
| 230 | + </goals> |
| 231 | + </execution> |
| 232 | + </executions> |
| 233 | + </plugin> |
173 | 234 | </plugins> |
174 | 235 | <pluginManagement> |
175 | 236 | <plugins> |
|
316 | 377 | </repository> |
317 | 378 | </distributionManagement> |
318 | 379 | <build> |
| 380 | + <resources> |
| 381 | + <resource> |
| 382 | + <directory>src/main/resources</directory> |
| 383 | + <filtering>true</filtering> |
| 384 | + </resource> |
| 385 | + </resources> |
319 | 386 | <plugins> |
320 | 387 | <plugin> |
321 | 388 | <groupId>org.sonatype.central</groupId> |
|
0 commit comments