Hi Anup,
the snapshots are not available at Maven-Central. Only released versions are available there.
We deploy our snapshots to the Apache repository at "repository.apache.org".
You can add them to your project, by adding this repo to your main pom.
<!-- Make Snapshots of Apache projects available -->
<repositories>
<repository>
<id>apache-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<!-- Make Snapshots of Apache plugins available -->
<pluginRepositories>
<pluginRepository>
<id>apache-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
Hope that helps.
Chris
Am 06.10.20, 09:26 schrieb "Anup K M" <anup.km@elmeasure.com>:
Hi Christofer Dutz,
As mentioned earlier, I have tried to use 0.8.0-SNAPSHOT but its showing
"org.apache.plc4x:plc4j-api:0.8.0-SNAPSHOT" not found. And I have checked
on the maven repository there was dependency upto 0.7.0. version. How to
use the 0.8.0-SNAPSHOT version.
Thanks & regards,
Anup
On Thu, Oct 1, 2020 at 5:26 PM Christofer Dutz <christofer.dutz@c-ware.de>
wrote:
> Hi Anup,
>
> please make sure you are using the 0.8.0-SNAPSHOT version ... we're
> currently working hard on releasing it soon.
> But there were some issues with the Modbus driver before that.
>
> Chris
>
>
> Am 01.10.20, 13:44 schrieb "Anup K M" <anup.km@elmeasure.com>:
>
> Hello everyone,
>
> I am using PLC4X java api to connect some devices through modbus tcp
> protocol on my windows device. After every 50 minutes of execution the
> connection fails with the every devices even after making the
> reconnection
> at the same instance , it is not getting connected it throws the
> PlcConnectionException. How to make it connected for 24*7 and access
> the
> data 24*7.
>
> Thanks and regards,
> Anup K M
>
> --
>
>
>
>
>
>
>
> IMPORTANT: The contents of this email and any attachments are
> confidential. They are intended for the named recipient(s) only. If
> you
> have received this email by mistake, please notify the sender
> immediately
> and do not disclose the contents to anyone or make copies thereof.
>
> Please,
> consider your environmental responsibility. Before printing this
> e-mail ask
> yourself: "Do I need a hard copy?"
>
>
--
IMPORTANT: The contents of this email and any attachments are
confidential. They are intended for the named recipient(s) only. If you
have received this email by mistake, please notify the sender immediately
and do not disclose the contents to anyone or make copies thereof.
Please,
consider your environmental responsibility. Before printing this e-mail ask
yourself: "Do I need a hard copy?"
|