Skip to content

Commit

Permalink
SAK-40025 - Update to opencsv 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm authored and Miguel Pellicer committed May 25, 2018
1 parent 6ccedf8 commit 873d623
Show file tree
Hide file tree
Showing 23 changed files with 27 additions and 28 deletions.
2 changes: 1 addition & 1 deletion admin-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<version>0.0.7</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
import org.sakaiproject.util.ResourceLoader;
import org.sakaiproject.util.StringUtil;

import au.com.bytecode.opencsv.CSVReader;
import com.opencsv.CSVReader;
import lombok.extern.slf4j.Slf4j;
import net.tanesha.recaptcha.ReCaptcha;
import net.tanesha.recaptcha.ReCaptchaFactory;
Expand Down
2 changes: 1 addition & 1 deletion assignment/impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<dependencies>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.apache.poi.ss.usermodel.Workbook;
import org.sakaiproject.util.Validator;

import au.com.bytecode.opencsv.CSVWriter;
import com.opencsv.CSVWriter;

/**
* Abstracts away writing to a CSV or Excel file.
Expand Down
2 changes: 1 addition & 1 deletion assignment/tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<dependencies>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;

import au.com.bytecode.opencsv.CSVReader;
import com.opencsv.CSVReader;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections.CollectionUtils;
Expand Down
2 changes: 1 addition & 1 deletion deploy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@

<!-- csv library -->
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion gradebookng/tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<artifactId>commons-validator</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*/
package org.sakaiproject.gradebookng.business.util;

import au.com.bytecode.opencsv.CSVParser;
import au.com.bytecode.opencsv.CSVReader;
import com.opencsv.CSVParser;
import com.opencsv.CSVReader;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.sakaiproject.gradebookng.tool.panels.importExport;

import au.com.bytecode.opencsv.CSVWriter;
import com.opencsv.CSVWriter;

import java.io.File;
import java.io.FileWriter;
Expand Down
3 changes: 1 addition & 2 deletions jobscheduler/scheduler-component-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.sakaiproject.component.app.scheduler.jobs.cm.processor;

import au.com.bytecode.opencsv.CSVReader;
import com.opencsv.CSVReader;
import lombok.extern.slf4j.Slf4j;

import java.io.BufferedReader;
Expand Down
2 changes: 1 addition & 1 deletion kernel/kernel-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
</dependency>
<dependency>
<!-- for parsing CSV data from config service files -->
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

package org.sakaiproject.component.impl;

import au.com.bytecode.opencsv.CSVParser;
import com.opencsv.CSVParser;

import java.io.IOException;
import java.lang.ref.WeakReference;
Expand Down
2 changes: 1 addition & 1 deletion lessonbuilder/tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<artifactId>commons-fileupload</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

package org.sakaiproject.lessonbuildertool.tool.beans;

import au.com.bytecode.opencsv.CSVParser;
import com.opencsv.CSVParser;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
Expand Down
4 changes: 2 additions & 2 deletions master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<sakai.org.json.version>20171018</sakai.org.json.version>
<sakai.pluto.version>1.1.7</sakai.pluto.version>
<sakai.quartz.version>2.2.3</sakai.quartz.version>
<sakai.opencsv.version>2.3</sakai.opencsv.version>
<sakai.opencsv.version>4.1</sakai.opencsv.version>
<sakai.servletapi.version>2.4</sakai.servletapi.version>
<sakai.groovy.version>2.4.13</sakai.groovy.version>
<sakai.simple-xml.version>2.6.4</sakai.simple-xml.version>
Expand Down Expand Up @@ -949,7 +949,7 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${sakai.opencsv.version}</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion profile2/impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
import java.util.List;
import java.util.Map;

import au.com.bytecode.opencsv.CSVReader;
import au.com.bytecode.opencsv.bean.CsvToBean;
import au.com.bytecode.opencsv.bean.HeaderColumnNameTranslateMappingStrategy;
import com.opencsv.CSVReader;
import com.opencsv.bean.CsvToBean;
import com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
Expand Down
2 changes: 1 addition & 1 deletion signup/tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;

import au.com.bytecode.opencsv.CSVWriter;
import com.opencsv.CSVWriter;
import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.usermodel.Workbook;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<artifactId>commons-fileupload</artifactId>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

import javax.servlet.http.HttpServletRequest;

import au.com.bytecode.opencsv.CSVReader;
import com.opencsv.CSVReader;
import lombok.extern.slf4j.Slf4j;
import lombok.Getter;
import lombok.Setter;
Expand Down

0 comments on commit 873d623

Please sign in to comment.