Author: desruisseaux
Date: Wed May 18 03:59:10 2016
New Revision: 1744348
URL: http://svn.apache.org/viewvc?rev=1744348&view=rev
Log:
Prepare the branch for the 0.7 release.
Removed:
sis/branches/0.7/application/sis-javafx/
sis/branches/0.7/storage/sis-shapefile/
sis/branches/0.7/storage/sis-storage/src/main/java/org/apache/sis/internal/storage/csv/
sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/internal/storage/csv/
Modified:
sis/branches/0.7/core/sis-utility/src/main/java/org/apache/sis/util/Version.java
sis/branches/0.7/pom.xml
sis/branches/0.7/storage/pom.xml
sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/test/suite/StorageTestSuite.java
Modified:
sis/branches/0.7/core/sis-utility/src/main/java/org/apache/sis/util/Version.java
URL:
http://svn.apache.org/viewvc/sis/branches/0.7/core/sis-utility/src/main/java/org/apache/sis/util/Version.java?rev=1744348&r1=1744347&r2=1744348&view=diff
==============================================================================
---
sis/branches/0.7/core/sis-utility/src/main/java/org/apache/sis/util/Version.java
[UTF-8] (original)
+++
sis/branches/0.7/core/sis-utility/src/main/java/org/apache/sis/util/Version.java
[UTF-8] Wed May 18 03:59:10 2016
@@ -60,7 +60,7 @@ public class Version implements CharSequ
/**
* The version of this Apache SIS distribution.
*/
- public static final Version SIS = new Version(MAJOR_VERSION + "." +
MINOR_VERSION + "-SNAPSHOT");
+ public static final Version SIS = new Version(MAJOR_VERSION + "." +
MINOR_VERSION);
/**
* A few commonly used version numbers. This list is based on SIS needs,
e.g. in {@code DataStore} implementations.
Modified: sis/branches/0.7/pom.xml
URL:
http://svn.apache.org/viewvc/sis/branches/0.7/pom.xml?rev=1744348&r1=1744347&r2=1744348&view=diff
==============================================================================
--- sis/branches/0.7/pom.xml (original)
+++ sis/branches/0.7/pom.xml Wed May 18 03:59:10 2016
@@ -71,12 +71,12 @@ Apache SIS is a free software, Java lang
============================================================== -->
<scm>
<connection>
- scm:svn:http://svn.apache.org/repos/asf/sis/trunk
+ scm:svn:http://svn.apache.org/repos/asf/sis/branches/0.7
</connection>
<developerConnection>
- scm:svn:https://svn.apache.org/repos/asf/sis/trunk
+ scm:svn:https://svn.apache.org/repos/asf/sis/branches/0.7
</developerConnection>
- <url>http://svn.apache.org/viewvc/sis/trunk</url>
+ <url>http://svn.apache.org/viewvc/sis/branches/0.7</url>
</scm>
<ciManagement>
@@ -424,7 +424,7 @@ Apache SIS is a free software, Java lang
<!-- Following properties are branch-specific -->
<maven.compile.source>1.6</maven.compile.source>
<maven.compile.target>1.6</maven.compile.target>
- <sis.plugin.version>${project.version}</sis.plugin.version>
+ <sis.plugin.version>0.7-SNAPSHOT</sis.plugin.version>
<geoapi.version>3.0.0</geoapi.version>
</properties>
@@ -719,26 +719,6 @@ Apache SIS is a free software, Java lang
</build>
-
- <!-- ==============================================================
- Additional repositories from which to download artifacts.
- The parent pom.xml already declares the apache.snapshots
- repository for library artifacts. But we also need it for
- Maven plugins in order to download sis-build-helper when
- the user did not built it himself.
- ============================================================== -->
- <pluginRepositories>
- <pluginRepository>
- <id>apache.snapshots</id>
- <name>Apache Snapshot Repository</name>
- <url>http://repository.apache.org/snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- </pluginRepository>
- </pluginRepositories>
-
-
<!-- ==============================================================
Group of modules to build in approximate dependency order.
============================================================== -->
Modified: sis/branches/0.7/storage/pom.xml
URL:
http://svn.apache.org/viewvc/sis/branches/0.7/storage/pom.xml?rev=1744348&r1=1744347&r2=1744348&view=diff
==============================================================================
--- sis/branches/0.7/storage/pom.xml (original)
+++ sis/branches/0.7/storage/pom.xml Wed May 18 03:59:10 2016
@@ -136,7 +136,6 @@
=========================================================== -->
<modules>
<module>sis-storage</module>
- <module>sis-shapefile</module>
<module>sis-netcdf</module>
</modules>
Modified:
sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/test/suite/StorageTestSuite.java
URL:
http://svn.apache.org/viewvc/sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/test/suite/StorageTestSuite.java?rev=1744348&r1=1744347&r2=1744348&view=diff
==============================================================================
---
sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/test/suite/StorageTestSuite.java
[UTF-8] (original)
+++
sis/branches/0.7/storage/sis-storage/src/test/java/org/apache/sis/test/suite/StorageTestSuite.java
[UTF-8] Wed May 18 03:59:10 2016
@@ -43,7 +43,6 @@ import org.junit.BeforeClass;
org.apache.sis.internal.storage.xml.StoreTest.class,
org.apache.sis.internal.storage.wkt.StoreProviderTest.class,
org.apache.sis.internal.storage.wkt.StoreTest.class,
- org.apache.sis.internal.storage.csv.StoreTest.class,
org.apache.sis.storage.DataStoresTest.class,
org.apache.sis.index.GeoHashCoderTest.class
})