-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
358 lines (321 loc) · 10.9 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.commonslibs</groupId>
<artifactId>pruebas_selenium_lib</artifactId>
<version>0.8.0.6</version>
<name>Libreria para pruebas con Selenium</name>
<description>Proyecto con las funcionalidades comunes de todos los proyectos que vayan a usar Selenium como framework de pruebas funcionales</description>
<url>https://github.com/commonslibs/pruebas_selenium_lib</url>
<licenses>
<license>
<name>GPL-v3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Luis Escamilla Martin</name>
<email>luis.escamilla@juntadeandalucia.es</email>
<organization>AGAPA</organization>
<organizationUrl>https://www.juntadeandalucia.es/agenciaagrariaypesquera</organizationUrl>
</developer>
<developer>
<name>Raul Morales de los Santos</name>
<email>raul.morales@juntadeandalucia.es</email>
<organization>AGAPA</organization>
<organizationUrl>https://www.juntadeandalucia.es/agenciaagrariaypesquera</organizationUrl>
</developer>
<developer>
<name>Jose Carlos Serrano Catena</name>
<email>josec.serrano@gmail.com</email>
<organization>AGAPA</organization>
<organizationUrl>https://www.juntadeandalucia.es/agenciaagrariaypesquera</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/commonslibs/pruebas_selenium_lib.git</connection>
<developerConnection>scm:git:ssh://github.com/commonslibs/pruebas_selenium_lib.git</developerConnection>
<url>https://github.com/commonslibs/pruebas_selenium_lib.git</url>
</scm>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<ojdbc.version>23.6.0.24.10</ojdbc.version>
<testng.version>7.10.2</testng.version>
<bonigarcia-webdrivermanager.version>5.9.2</bonigarcia-webdrivermanager.version>
<extentreports.version>5.1.2</extentreports.version>
<video-recorder-testng.version>2.0</video-recorder-testng.version>
</properties>
<dependencies>
<!-- Util para logs y evitar escribir código getter/setter -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
</dependency>
<!-- WebDrivers de selenium -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.27.0</version>
</dependency>
<!-- Conexión con la BD para establecer condiciones iniciales en las pruebas -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc11</artifactId>
<version>${ojdbc.version}</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${bonigarcia-webdrivermanager.version}</version>
</dependency>
<dependency>
<groupId>com.automation-remarks</groupId>
<artifactId>video-recorder-testng</artifactId>
<version>${video-recorder-testng.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<exclusions>
<exclusion>
<groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId>
</exclusion>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</exclusion>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Framework de TestNG -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>jakarta.mail</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>${extentreports.version}</version>
<exclusions>
<exclusion>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.34</version><!--$NO-MVN-MAN-VER$-->
</dependency>
</dependencies>
<!-- Definicion de perfiles -->
<profiles>
<profile>
<!-- Perfil LOCAL para realizar empaquetados y despliegues de la libreria en local -->
<id>LOCAL</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<!-- Perfil listo para el despliegue en MAVEN CENTRAL en modo MANUAL con Maven (SIN GITHUB-ACTIONS,
por ejemplo con maven desde linea de comandos)
COMANDOS:
>> mvn clean package -DskipTests CENTRAL-MANUAL : No despliega, solo compila y nos sirve para comprobar que todo es correcto
>> mvn deploy -DskipTests CENTRAL-MANUAL : Despliega a falta de que se le de el OK en https://central.sonatype.com/
Si queremos desplegar sin darle el OK, en el plugin "central-publishing-maven-plugin" a la propiedad
"autoPublish" indicarle el valor "true"
-->
<id>CENTRAL-MANUAL</id>
<build>
<plugins>
<!-- OK: Plugin requerido para publicar en MAVEN CENTRAL -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>false</autoPublish>
</configuration>
</plugin>
<!-- OK: Genera los sources de la libreria para MAVEN CENTRAL -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- OK: Genera el javadoc de la libreria para MAVEN CENTRAL -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnWarnings>false</failOnWarnings>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
</plugin>
<!-- OK: Firma los archivos que se subiran a MAVEN CENTRAL -->
<!-- OPCION1: Firma manual, sin usar GITHUB-ACTIONS. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Perfil listo para el despliegue en MAVEN CENTRAL con GITHUB-ACTIONS -->
<id>CENTRAL-GITHUB</id>
<build>
<plugins>
<!-- OK: Plugin requerido para publicar en MAVEN CENTRAL -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<!-- Genera los sources de la libreria para MAVEN CENTRAL -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Genera el javadoc de la libreria para MAVEN CENTRAL -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnWarnings>false</failOnWarnings>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
</plugin>
<!-- Firma los archivos que se subiran a MAVEN CENTRAL -->
<!-- OPCION2: Firma automatica con GITHUB-ACTIONS -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<!-- FIN: Plugins requerido para publicar en MAVEN CENTRAL -->
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>