Re: [Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-31 Thread Ben Caradoc-Davies
I have re-enabled H2DataStoreFactoryTest.testTCP on master. It should be 
fixed on apollo-slave-02 by the /etc/hosts fix, but with the new Jenkins 
geotools-master-online-postgis -pl -am configuration, it will not even 
be run. Might as well enable it to restore the coverage. I think this 
test will now be run on geotools-master.


Kind regards,
Ben.

On 25/05/18 17:04, Ben Caradoc-Davies wrote:
H2DataStoreFactoryTest.testTCP is now skipped, revealing a bunch more 
failures in gt-app-schema and gt-render:
https://build.geoserver.org/job/geotools-master-online-postgis/611/consoleText 



On 25/05/18 14:45, Ben Caradoc-Davies wrote:

Andrea,

I see that you inadvertently included the @Ignore for 
H2DataStoreFactoryTest.testTCP in your GEOT-6005 changes:
https://github.com/geotools/geotools/commit/d7aac38f6657f9b0064cd4cc71a1c4f5f3601973#diff-f89dcf4a2f5a125e809e6e14c19e242aR86 



This @Ignore is ineffective because H2DataStoreFactoryTest is a JUnit 
3 TestCase and @Ignore is a JUnit 4 feature. You can see 
H2DataStoreFactoryTest.testTCP continue to run and fail on Jenkins:
https://build.geoserver.org/job/geotools-master-online-postgis/610/consoleText 



To make your @Ignore effective, I ported H2DataStoreFactoryTest to 
JUnit 4 on master:
https://github.com/geotools/geotools/commit/f94a6b92e3c4ce4aa43f5cfff223b4f909aed14c 



I have kicked the Jenkins geotools-master-online-postgis build to see 
if this change fixes it.


I have also disabled the Jenkins geotools-master-online-oracle and 
geotools-master-online-sqlserver-jtds builds until some cares enough 
to fix them.


Kind regards,
Ben.


On 23/05/18 11:02, Ben Caradoc-Davies wrote:
Yes, please disable H2DataStoreFactoryTest.testTCP by X-ing it out or 
porting to JUnit 4 and using @Ignore.


If we cannot fix this failure on Jenkins (and it only fails on 
Jenkins), we must preserve test coverage by sacrificing the failing 
method. At the moment, we have no online test coverage for postgis 
because the online build fails and nobody will notice if a new 
failure is introduced.


Any remaining failing builds must be disabled because they are 
conditioning developers to ignore build failure messages and are thus 
harmful to continuous integration. I think the online Oracle test was 
failing on 3D support. Unless someone cares enough to fix it, it 
should be disabled.


Kind regards,
Ben.

On 23/05/18 05:14, Andrea Aime wrote:

Hi,
the geotools-devel list is a wall of test failure reports... should 
we just

disable that test?
I don't think it's adding all that much to test coverage...

Cheers
Andrea


==
GeoServer Professional Services from the experts! Visit 
http://goo.gl/it488V

for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del 
messaggio,

per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del 
messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio 
stesso,

divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento 
contrario ai

principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended 
solely for
the attention and use of the named addressee(s) and may be 
confidential or

proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, 
reproduction,
copying, distribution, or either dissemination, either whole or 
partial, is

strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, 
accuracy or
completeness of sent messages and accepts no responsibility  for 
changes

made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.



-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.source

Re: [Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-25 Thread Andrea Aime
Hi Ben,
thanks for the progress, much appreciated!

Cannot help right away, buried with work and next week I'm abroad at a
customer site, I'll see what I can
do when I'm back

Cheers
Andrea


On Fri, May 25, 2018 at 7:04 AM, Ben Caradoc-Davies 
wrote:

> H2DataStoreFactoryTest.testTCP is now skipped, revealing a bunch more
> failures in gt-app-schema and gt-render:
> https://build.geoserver.org/job/geotools-master-online-postg
> is/611/consoleText
>
>
> On 25/05/18 14:45, Ben Caradoc-Davies wrote:
>
>> Andrea,
>>
>> I see that you inadvertently included the @Ignore for
>> H2DataStoreFactoryTest.testTCP in your GEOT-6005 changes:
>> https://github.com/geotools/geotools/commit/d7aac38f6657f9b0
>> 064cd4cc71a1c4f5f3601973#diff-f89dcf4a2f5a125e809e6e14c19e242aR86
>>
>> This @Ignore is ineffective because H2DataStoreFactoryTest is a JUnit 3
>> TestCase and @Ignore is a JUnit 4 feature. You can see
>> H2DataStoreFactoryTest.testTCP continue to run and fail on Jenkins:
>> https://build.geoserver.org/job/geotools-master-online-postg
>> is/610/consoleText
>>
>> To make your @Ignore effective, I ported H2DataStoreFactoryTest to JUnit
>> 4 on master:
>> https://github.com/geotools/geotools/commit/f94a6b92e3c4ce4a
>> a43f5cfff223b4f909aed14c
>>
>> I have kicked the Jenkins geotools-master-online-postgis build to see if
>> this change fixes it.
>>
>> I have also disabled the Jenkins geotools-master-online-oracle and
>> geotools-master-online-sqlserver-jtds builds until some cares enough to
>> fix them.
>>
>> Kind regards,
>> Ben.
>>
>>
>> On 23/05/18 11:02, Ben Caradoc-Davies wrote:
>>
>>> Yes, please disable H2DataStoreFactoryTest.testTCP by X-ing it out or
>>> porting to JUnit 4 and using @Ignore.
>>>
>>> If we cannot fix this failure on Jenkins (and it only fails on Jenkins),
>>> we must preserve test coverage by sacrificing the failing method. At the
>>> moment, we have no online test coverage for postgis because the online
>>> build fails and nobody will notice if a new failure is introduced.
>>>
>>> Any remaining failing builds must be disabled because they are
>>> conditioning developers to ignore build failure messages and are thus
>>> harmful to continuous integration. I think the online Oracle test was
>>> failing on 3D support. Unless someone cares enough to fix it, it should be
>>> disabled.
>>>
>>> Kind regards,
>>> Ben.
>>>
>>> On 23/05/18 05:14, Andrea Aime wrote:
>>>
 Hi,
 the geotools-devel list is a wall of test failure reports... should we
 just
 disable that test?
 I don't think it's adding all that much to test coverage...

 Cheers
 Andrea


 ==
 GeoServer Professional Services from the experts! Visit
 http://goo.gl/it488V
 for more information.
 ==

 Ing. Andrea Aime
 @geowolf
 Technical Lead

 GeoSolutions S.A.S.
 Via di Montramito 3/A
 55054  Massarosa (LU)
 phone: +39 0584 962313
 fax: +39 0584 1660272
 mob: +39  339 8844549

 http://www.geo-solutions.it
 http://twitter.com/geosolutions_it

 AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

 Le informazioni contenute in questo messaggio di posta elettronica e/o
 nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
 loro utilizzo è consentito esclusivamente al destinatario del messaggio,
 per le finalità indicate nel messaggio stesso. Qualora riceviate questo
 messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
 darcene notizia via e-mail e di procedere alla distruzione del messaggio
 stesso, cancellandolo dal Vostro sistema. Conservare il messaggio
 stesso,
 divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
 utilizzarlo per finalità diverse, costituisce comportamento contrario ai
 principi dettati dal D.Lgs. 196/2003.

 The information in this message and/or attachments, is intended solely
 for
 the attention and use of the named addressee(s) and may be confidential
 or
 proprietary in nature or covered by the provisions of privacy act
 (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
 Code).Any use not in accord with its purpose, any disclosure,
 reproduction,
 copying, distribution, or either dissemination, either whole or
 partial, is
 strictly forbidden except previous formal approval of the named
 addressee(s). If you are not the intended recipient, please contact
 immediately the sender by telephone, fax or e-mail and delete the
 information in this message that has been received in error. The sender
 does not give any warranty or accept liability as the content, accuracy
 or
 completeness of sent messages and accepts no responsibility  for changes
 made after they were sent or for other risks which arise as a result of
 e-mail transmission, viruses, etc.



 -

Re: [Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-24 Thread Ben Caradoc-Davies
H2DataStoreFactoryTest.testTCP is now skipped, revealing a bunch more 
failures in gt-app-schema and gt-render:

https://build.geoserver.org/job/geotools-master-online-postgis/611/consoleText

On 25/05/18 14:45, Ben Caradoc-Davies wrote:

Andrea,

I see that you inadvertently included the @Ignore for 
H2DataStoreFactoryTest.testTCP in your GEOT-6005 changes:
https://github.com/geotools/geotools/commit/d7aac38f6657f9b0064cd4cc71a1c4f5f3601973#diff-f89dcf4a2f5a125e809e6e14c19e242aR86 



This @Ignore is ineffective because H2DataStoreFactoryTest is a JUnit 3 
TestCase and @Ignore is a JUnit 4 feature. You can see 
H2DataStoreFactoryTest.testTCP continue to run and fail on Jenkins:
https://build.geoserver.org/job/geotools-master-online-postgis/610/consoleText 



To make your @Ignore effective, I ported H2DataStoreFactoryTest to JUnit 
4 on master:
https://github.com/geotools/geotools/commit/f94a6b92e3c4ce4aa43f5cfff223b4f909aed14c 



I have kicked the Jenkins geotools-master-online-postgis build to see if 
this change fixes it.


I have also disabled the Jenkins geotools-master-online-oracle and 
geotools-master-online-sqlserver-jtds builds until some cares enough to 
fix them.


Kind regards,
Ben.


On 23/05/18 11:02, Ben Caradoc-Davies wrote:
Yes, please disable H2DataStoreFactoryTest.testTCP by X-ing it out or 
porting to JUnit 4 and using @Ignore.


If we cannot fix this failure on Jenkins (and it only fails on 
Jenkins), we must preserve test coverage by sacrificing the failing 
method. At the moment, we have no online test coverage for postgis 
because the online build fails and nobody will notice if a new failure 
is introduced.


Any remaining failing builds must be disabled because they are 
conditioning developers to ignore build failure messages and are thus 
harmful to continuous integration. I think the online Oracle test was 
failing on 3D support. Unless someone cares enough to fix it, it 
should be disabled.


Kind regards,
Ben.

On 23/05/18 05:14, Andrea Aime wrote:

Hi,
the geotools-devel list is a wall of test failure reports... should 
we just

disable that test?
I don't think it's adding all that much to test coverage...

Cheers
Andrea


==
GeoServer Professional Services from the experts! Visit 
http://goo.gl/it488V

for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio 
stesso,

divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended 
solely for
the attention and use of the named addressee(s) and may be 
confidential or

proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, 
reproduction,
copying, distribution, or either dissemination, either whole or 
partial, is

strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, 
accuracy or

completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.



-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel







--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
GeoTools-Deve

Re: [Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-24 Thread Ben Caradoc-Davies

Andrea,

I see that you inadvertently included the @Ignore for 
H2DataStoreFactoryTest.testTCP in your GEOT-6005 changes:

https://github.com/geotools/geotools/commit/d7aac38f6657f9b0064cd4cc71a1c4f5f3601973#diff-f89dcf4a2f5a125e809e6e14c19e242aR86

This @Ignore is ineffective because H2DataStoreFactoryTest is a JUnit 3 
TestCase and @Ignore is a JUnit 4 feature. You can see 
H2DataStoreFactoryTest.testTCP continue to run and fail on Jenkins:

https://build.geoserver.org/job/geotools-master-online-postgis/610/consoleText

To make your @Ignore effective, I ported H2DataStoreFactoryTest to JUnit 
4 on master:

https://github.com/geotools/geotools/commit/f94a6b92e3c4ce4aa43f5cfff223b4f909aed14c

I have kicked the Jenkins geotools-master-online-postgis build to see if 
this change fixes it.


I have also disabled the Jenkins geotools-master-online-oracle and 
geotools-master-online-sqlserver-jtds builds until some cares enough to 
fix them.


Kind regards,
Ben.


On 23/05/18 11:02, Ben Caradoc-Davies wrote:
Yes, please disable H2DataStoreFactoryTest.testTCP by X-ing it out or 
porting to JUnit 4 and using @Ignore.


If we cannot fix this failure on Jenkins (and it only fails on Jenkins), 
we must preserve test coverage by sacrificing the failing method. At the 
moment, we have no online test coverage for postgis because the online 
build fails and nobody will notice if a new failure is introduced.


Any remaining failing builds must be disabled because they are 
conditioning developers to ignore build failure messages and are thus 
harmful to continuous integration. I think the online Oracle test was 
failing on 3D support. Unless someone cares enough to fix it, it should 
be disabled.


Kind regards,
Ben.

On 23/05/18 05:14, Andrea Aime wrote:

Hi,
the geotools-devel list is a wall of test failure reports... should we 
just

disable that test?
I don't think it's adding all that much to test coverage...

Cheers
Andrea


==
GeoServer Professional Services from the experts! Visit 
http://goo.gl/it488V

for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely 
for
the attention and use of the named addressee(s) and may be 
confidential or

proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, 
reproduction,
copying, distribution, or either dissemination, either whole or 
partial, is

strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, 
accuracy or

completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.



-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel





--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-22 Thread Ben Caradoc-Davies
Yes, please disable H2DataStoreFactoryTest.testTCP by X-ing it out or 
porting to JUnit 4 and using @Ignore.


If we cannot fix this failure on Jenkins (and it only fails on Jenkins), 
we must preserve test coverage by sacrificing the failing method. At the 
moment, we have no online test coverage for postgis because the online 
build fails and nobody will notice if a new failure is introduced.


Any remaining failing builds must be disabled because they are 
conditioning developers to ignore build failure messages and are thus 
harmful to continuous integration. I think the online Oracle test was 
failing on 3D support. Unless someone cares enough to fix it, it should 
be disabled.


Kind regards,
Ben.

On 23/05/18 05:14, Andrea Aime wrote:

Hi,
the geotools-devel list is a wall of test failure reports... should we just
disable that test?
I don't think it's adding all that much to test coverage...

Cheers
Andrea


==
GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel



--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


[Geotools-devel] Should we just ignore the H2 test breaking the online builds?

2018-05-22 Thread Andrea Aime
Hi,
the geotools-devel list is a wall of test failure reports... should we just
disable that test?
I don't think it's adding all that much to test coverage...

Cheers
Andrea


==
GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel