Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ You can install ZeroBounceSDK by adding the dependency to your `pom.xml` file:
```


## Running the project

In order to be able to run it using a newer Java version, you have to add the following parameters when you compile the code: `--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED`. In IntelliJ IDEA, you would go to `Edit Configuration` and copy-paste these parameters to the `VM Options` text field.


## How to use the sample project

1. Build the JAR file for the SDK project.
Expand Down
5 changes: 0 additions & 5 deletions documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ You can install ZeroBounceSDK by adding the dependency to your `pom.xml` file:
```


#### Running the project

In order to be able to run it using a newer Java version, you have to add the following parameters when you compile the code: `--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED`. In IntelliJ IDEA, you would go to `Edit Configuration` and copy-paste these parameters to the `VM Options` text field.


#### How to use the sample project

1. Build the JAR file for the SDK project.
Expand Down
5 changes: 0 additions & 5 deletions documentation_es.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ Puedes instalar ZeroBounceSDK agregando la dependencia a tu archivo `pom.xml`:
```


#### Ejecución del proyecto

Para ejecutarlo con una versión más reciente de Java, debe agregar los siguientes parámetros al compilar el código: `--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED`. En IntelliJ IDEA, debe ir a `Editar configuración` y copiar y pegar estos parámetros en el campo de texto `Opciones de máquina virtual`.


#### Cómo utilizar el proyecto de ejemplo

1. Compila el archivo JAR para el proyecto SDK.
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<version>1.2.1</version>
<version>1.3.0</version>
</versions>
<lastUpdated>20250721134252</lastUpdated>
<lastUpdated>20251126135915</lastUpdated>
</versioning>
</metadata>
19 changes: 1 addition & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<properties>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.14.1</junit.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<!-- The JavaFX 21 is the latest LTS version that supports Java 17+.
Expand Down Expand Up @@ -56,22 +55,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zerobounce.java</groupId>
<artifactId>zerobouncesdk</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
</dependency>

</dependencies>
Expand All @@ -82,10 +69,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<!--<configuration>
<source>19</source>
<target>19</target>
</configuration>-->
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
Expand Down
Binary file not shown.
7 changes: 4 additions & 3 deletions zero-bounce-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

<properties>
<java.version>21</java.version>
<junit.version>6.0.1</junit.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -52,7 +53,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.19.0</version>
<version>1.20.0</version>
</dependency>

<dependency>
Expand All @@ -78,13 +79,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.14.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.14.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

Expand Down