Changeset 6717


Ignore:
Timestamp:
10/30/15 17:27:50 (9 years ago)
Author:
davor.ostojic@oeaw.ac.at
Message:
 
Location:
vlo/branches/vlo-3.3-oeaw/vlo-vocabularies
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.3-oeaw/vlo-vocabularies/pom.xml

    r6646 r6717  
    1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    2            
    3     <parent>
    4         <groupId>eu.clarin.cmdi</groupId>
    5         <artifactId>vlo</artifactId>
    6         <version>3.3-SNAPSHOT</version>
    7     </parent>
    8    
     1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">   
    92    <modelVersion>4.0.0</modelVersion>
    103    <groupId>eu.clarin.cmdi</groupId>
     
    123116                        </build>
    124117                </profile>
    125                 <profile>
    126                         <id>csv2xml</id>
    127                         <build>
    128                                 <plugins>
    129                                         <plugin>
    130                                                 <groupId>org.codehaus.mojo</groupId> 
    131                                         <artifactId>exec-maven-plugin</artifactId>
    132                                         <version>1.1.1</version>
    133                                         <executions>
    134                                                 <execution>
    135                                                         <phase>process-resources</phase>
    136                                                         <goals>
    137                                                                 <goal>java</goal>
    138                                                         </goals>
    139                                                         <configuration>
    140                                                                 <mainClass>eu.clarin.cmdi.vlo.main.TransformAllMaps</mainClass>
    141                                                                 <arguments>
    142                                                                         <argument>csv2xml</argument>
    143                                                                 </arguments>
    144                                                         </configuration>
    145                                                 </execution>
    146                                         </executions>                                           
    147                                         </plugin>
    148                                 </plugins>
    149                         </build>
    150                 </profile>
    151118        </profiles>
    152119       
    153         <build>
    154                 <plugins>
    155                         <plugin>
    156                                 <groupId>org.codehaus.mojo</groupId>
    157                                 <artifactId>exec-maven-plugin</artifactId>
    158                                 <version>1.4.0</version>
    159                                 <executions>
    160                                         <execution>
    161                                                 <id>create-maps</id>
    162                                                 <phase>compile</phase>
    163                                                 <goals>
    164                                                         <goal>java</goal>
    165                                                 </goals>
    166                                                 <configuration>
    167                                                         <mainClass>eu.clarin.cmdi.vlo.main.TransformAllMaps</mainClass>
    168                                                         <arguments>                                                             
    169                                                                 <argument>csv2xml</argument>
    170                                                         </arguments>
    171                                                 </configuration>
    172                                         </execution>
    173                                 </executions>
    174                         </plugin>
    175                 </plugins>
    176         </build>
    177        
    178 
    179120        <dependencies>
    180121                <dependency>
     
    199140            <version>${slf4j.version}</version>
    200141        </dependency>
     142        <dependency>
     143                        <groupId>org.apache.poi</groupId>
     144                        <artifactId>poi</artifactId>
     145                        <version>3.7</version>
     146                </dependency>
    201147        </dependencies>
    202148</project>
  • vlo/branches/vlo-3.3-oeaw/vlo-vocabularies/src/main/java/eu/clarin/cmdi/vlo/transformers/CSVTransformer.java

    r6708 r6717  
    1717import javax.xml.bind.JAXBException;
    1818
    19 import org.apache.poi.util.ArrayUtil;
    2019import org.slf4j.Logger;
    2120import org.slf4j.LoggerFactory;
Note: See TracChangeset for help on using the changeset viewer.