This is an automated email from the ASF dual-hosted git repository.

arjansh pushed a commit to annotated tag MetaModel-5.2.1-HI1
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 345bc47546486eb3c1046856863997163c7e08d9
Author: Arjan Seijkens <a.seijk...@quadient.com>
AuthorDate: Thu Jun 20 16:17:58 2019 +0200

    Changes to prepare for HI specific release
---
 .../apache/metamodel/csv/SingleLineCsvRowTest.java   |  2 +-
 pom.xml                                              | 20 +++++++++++---------
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git 
a/csv/src/test/java/org/apache/metamodel/csv/SingleLineCsvRowTest.java 
b/csv/src/test/java/org/apache/metamodel/csv/SingleLineCsvRowTest.java
index 6f36d21..e57a507 100644
--- a/csv/src/test/java/org/apache/metamodel/csv/SingleLineCsvRowTest.java
+++ b/csv/src/test/java/org/apache/metamodel/csv/SingleLineCsvRowTest.java
@@ -74,7 +74,7 @@ public class SingleLineCsvRowTest {
 
         try (final DataSet dataSet = new SingleLineCsvDataSet(FileHelper
                 .getBufferedReader(new 
FileResource("src/test/resources/empty_fields.csv").read(),
-                        FileHelper.UTF_8_CHARSET), columns, null, 11, new 
CsvConfiguration())) {
+                        FileHelper.UTF_8_ENCODING), columns, null, 11, new 
CsvConfiguration())) {
             dataSet.toRows().parallelStream().forEach(row -> {
                 for (int i = 0; i < 5; i++) {
                     assertEquals("", row.getValue(i));
diff --git a/pom.xml b/pom.xml
index 6b4a65c..e061bfd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,9 @@ under the License.
                <version>21</version>
        </parent>
        <scm>
-               
<url>https://git-wip-us.apache.org/repos/asf?p=metamodel.git</url>
-               
<connection>scm:git:http://git-wip-us.apache.org/repos/asf/metamodel.git</connection>
-               
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/metamodel.git</developerConnection>
+        <url>https://github.com/arjansh/metamodel.git</url>
+        
<connection>scm:git:https://github.com/arjansh/metamodel.git</connection>
+        
<developerConnection>scm:git:https://github.com/arjansh/metamodel.git</developerConnection>
    
                <tag>HEAD</tag>
        </scm>
        <groupId>org.apache.metamodel</groupId>
@@ -175,14 +175,15 @@ under the License.
        </licenses>
        <distributionManagement>
                <repository>
-                       <id>apache.releases.https</id>
-                       <name>Apache Release Distribution Repository</name>
-                       
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
+            <id>releases</id>
+            <name>internal releases</name>
+            
<url>http://repo.humaninference.com/content/repositories/releases</url>
                </repository>
                <snapshotRepository>
-                       <id>apache.snapshots.https</id>
-                       <name>Apache Development Snapshot Repository</name>
-                       
<url>https://repository.apache.org/content/repositories/snapshots</url>
+            <id>snapshots</id>
+            <name>internal snapshots</name>
+            
<url>http://repo.humaninference.com/content/repositories/snapshots</url>
+            <uniqueVersion>false</uniqueVersion>
                </snapshotRepository>
        </distributionManagement>
 
@@ -229,6 +230,7 @@ under the License.
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-release-plugin</artifactId>
+                <version>2.5.2</version>
                                <configuration>
                                        
<autoVersionSubmodules>true</autoVersionSubmodules>
                                        <goals>deploy</goals>

Reply via email to