Index: applications/editors/josm/plugins/cadastre-fr/.classpath
===================================================================
--- applications/editors/josm/plugins/cadastre-fr/.classpath	(revision 33657)
+++ applications/editors/josm/plugins/cadastre-fr/.classpath	(revision 33658)
@@ -2,8 +2,10 @@
 <classpath>
 	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="test/unit"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/JOSM-GeoTools"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/JOSM-jts"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>
Index: applications/editors/josm/plugins/cadastre-fr/src/META-INF/MANIFEST.MF
===================================================================
--- applications/editors/josm/plugins/cadastre-fr/src/META-INF/MANIFEST.MF	(revision 33657)
+++ applications/editors/josm/plugins/cadastre-fr/src/META-INF/MANIFEST.MF	(revision 33658)
@@ -2,5 +2,5 @@
 Plugin-Class: org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin
 Plugin-Description: A special handler for the French land registry WMS server
-Plugin-Version: 2.9
+Plugin-Version: 3.0
 Plugin-Stage: 60
 Plugin-Author: Pieren;<pieren3@gmail.com>;Don-vip;<vincent.privat@gmail.com>
Index: applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastrePlugin.java
===================================================================
--- applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastrePlugin.java	(revision 33657)
+++ applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastrePlugin.java	(revision 33658)
@@ -23,4 +23,5 @@
 
 import org.openstreetmap.josm.Main;
+import org.openstreetmap.josm.actions.ExtensionFileFilter;
 import org.openstreetmap.josm.actions.JosmAction;
 import org.openstreetmap.josm.actions.UploadAction;
@@ -47,4 +48,5 @@
 import org.openstreetmap.josm.plugins.fr.cadastre.actions.mapmode.WMSAdjustAction;
 import org.openstreetmap.josm.plugins.fr.cadastre.actions.upload.CheckSourceUploadHook;
+import org.openstreetmap.josm.plugins.fr.cadastre.edigeo.pci.EdigeoPciImporter;
 import org.openstreetmap.josm.plugins.fr.cadastre.preferences.CadastrePreferenceSetting;
 import org.openstreetmap.josm.plugins.fr.cadastre.session.CadastreSessionExporter;
@@ -61,7 +63,8 @@
  *
  * @author Pieren &lt;pieren3@gmail.com&gt;,
- *         &lt;matthieu.lochegnies@gmail.com&gt; for the extension to codeCommune
+ *         &lt;matthieu.lochegnies@gmail.com&gt; for the extension to codeCommune;
+ *         Don-vip&lt;vincent.privat@gmail.com&gt; for the maintenance and Edigeo support
  *
- * @version 2.6
+ * @version 3.0
  * <br>History:
  * <br>0.1 17-Jun-2008 first prototype using a first Lambert projection impl. in core
@@ -157,10 +160,11 @@
  * <br>                - option to simplify raster images in 2 bits colors (like images served in the past).
  * <br>2.6 10-Sep-2013 - add JOSM "sessions" feature support (list of layers stored in a file)
- * <br>2.7 26-Apr-2014 - switch to Java 7
- * <br>2.8 21-Jul-2016 - switch to Java 8
+ * <br>2.7 26-Apr-2014 - switch to Java 7 + bugfixes
+ * <br>2.8 21-Jul-2016 - switch to Java 8 + bugfixes
  * <br>2.9 23-Aug-2017 - use new HTTPS links from French cadastre - requires JOSM 12623+ to load Certigna certificate
+ * <br>3.0 30-Sep-2017 - add support for direct access to Cadastre vectorial data (Edigeo files)
  */
 public class CadastrePlugin extends Plugin {
-    static String VERSION = "2.9";
+    static String VERSION = "3.0";
 
     static JMenu cadastreJMenu;
@@ -221,4 +225,5 @@
 
         UploadAction.registerUploadHook(new CheckSourceUploadHook());
+        ExtensionFileFilter.addImporter(new EdigeoPciImporter());
 
         registerSessionLayerExporter(WMSLayer.class, CadastreSessionExporter.class);
