File tree Expand file tree Collapse file tree 13 files changed +230
-1
lines changed
main/java/br/dev/modscleo4
test/java/br/dev/modscleo4 Expand file tree Collapse file tree 13 files changed +230
-1
lines changed Original file line number Diff line number Diff line change 1- # desafiorpa
1+ # Desafio de programador JAVA RPA
2+ Implementação de um robô de automação para busca de preços de produtos em sites de vendas.
3+
4+ ## Descrição
5+ "Somos uma empresa que fazemos cotação de preços e precisamos de uma automação que possa buscar os preços em sites de venda. Nosso foco é achar os três menores preços de um determinado produto em um site de vendas e trazer suas informações para o cliente."
6+
7+ ## Especificações
8+ - Sites de vendas:
9+ - Mercado Livre
10+ - Casas Bahia
11+ - Produto: Xbox Series S
12+
13+ ## Requisitos
14+ - Java 17
15+ - Maven
16+ - SQLite
17+ - Spring Boot
18+ - Selenium
19+ - ChromeDriver
20+ - Slf4j
21+ - JUnit
22+ - Docker
23+
24+ ## Instruções
25+ ### Execução
26+ ``` bash
27+ mvn clean compile spring-boot:run
28+ ```
29+
30+ ### Testes
31+ ``` bash
32+ mvn clean test
33+ ```
34+
35+ ### Imagem Docker
36+ ``` bash
37+ docker build -t rpa .
38+ ```
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 ;
218
319import javax .sql .DataSource ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .crawler ;
218
319import java .util .List ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .crawler ;
218
319import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .marketplace ;
218
319import java .time .Duration ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .marketplace ;
218
319import java .util .List ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .marketplace ;
218
319import java .time .Duration ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .product ;
218
319import java .io .Serializable ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .product ;
218
319import java .util .List ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2024 Dhiego Cassiano Fogaça Barbosa
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package br .dev .modscleo4 .product ;
218
319import java .util .List ;
You can’t perform that action at this time.
0 commit comments