--- a/pom.xml
+++ b/pom.xml
@@ -5,12 +5,10 @@
     <artifactId>tavernaextractor</artifactId>
     <packaging>${packaging.type}</packaging>
     <name>TavernaExtractor</name>
-    <version>1.0-SNAPSHOT</version>
+    <version>1.0</version>
 
     <properties>
-
-       <!--<osgi.scope>compile</osgi.scope> --><!-- for local packaging -->
-        <!--<osgi.scope>provided</osgi.scope>-->
+       <!--<osgi.scope></osgi.scope> --><!-- set in OSGi profile -->
         <compiler.version>1.7</compiler.version>
         <springframework.version>3.2.3.RELEASE</springframework.version>
         <osgi.version>4.3.1</osgi.version>
@@ -66,7 +64,6 @@
             <artifactId>jettison</artifactId>
             <version>${jettison.version}</version>
             <!--<scope>${osgi.scope}</scope>-->
-            <!-- is it provided -->
         </dependency>
 
        <dependency>
@@ -74,56 +71,55 @@
             <artifactId>com.springsource.com.jcraft.jsch</artifactId>
             <version>${jcraft.version}</version>
             <scope>${osgi.scope}</scope>
-            <!-- is it provided -->
        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <version>${springframework.version}</version>
+            <scope>${osgi.scope}</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>${springframework.version}</version>
+            <scope>${osgi.scope}</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-tx</artifactId>
+            <version>${springframework.version}</version>
+            <scope>${osgi.scope}</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-orm</artifactId>
+            <version>${springframework.version}</version>
+            <scope>${osgi.scope}</scope>
+        </dependency>
+
+       <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-jdbc</artifactId>
+            <version>${springframework.version}</version>
+           <scope>${osgi.scope}</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-aop</artifactId>
+            <version>${springframework.version}</version>
+            <scope>${osgi.scope}</scope>
+        </dependency>
         <!-- END OSGi relevant dependencies -->
 
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-commons-annotations</artifactId>
             <version>${hibernate.commons.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-core</artifactId>
-            <version>${springframework.version}</version>
-            <scope>${osgi.scope}</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-context</artifactId>
-            <version>${springframework.version}</version>
-            <scope>${osgi.scope}</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-tx</artifactId>
-            <version>${springframework.version}</version>
-            <scope>${osgi.scope}</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-orm</artifactId>
-            <version>${springframework.version}</version>
-            <scope>${osgi.scope}</scope>
-        </dependency>
-
-       <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-jdbc</artifactId>
-            <version>${springframework.version}</version>
-           <scope>${osgi.scope}</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-aop</artifactId>
-            <version>${springframework.version}</version>
-            <scope>${osgi.scope}</scope>
         </dependency>
 
         <dependency>